MATLAB: When i run the program of data writting to a file i have got exponential data.how it will be in the decimel format

fprintf

fprintf(fileID,'%d',data(x,y,z))

Best Answer

fprintf(fileID,'%f',data(x,y,z))
Related Question