How To Write a Long-Decimal Number Data With Fprintf?
17 次查看(过去 30 天)
显示 更早的评论
Hi, Community...
I have a problem in writing a data that re contain with Long-Decimal numbers.... So i have this data :
annual_equation
ans =
1.0e+04 *
0.0000
-0.0000
4.1354
And if i change it in string data :
annual_equation =
3×1 string array
"3.39982917e-15"
"-1.67130873e-08"
"41353.5216"
I just want to print it in txt file, but the only number which re writed is just the last one :

By the way, im writing the file above with this code :
kode_annual = string(transpose(annual_equation));
for kode = 1:length(kode_annual)
dir_kode = string(filefive_path);
dir_kode2 = convertStringsToChars(filefive_path);
multi_k_annual = dir_kode+sprintf('Kode Annual Mean (%s).txt', judul_kode);
isian_kode{kode} = kode_annual(kode);
eval(['cd ''' dir_kode2 ''';']);
fout_Kode = fopen(multi_k_annual,'w');
fprintf(fout_Kode, '%s\n', [isian_kode{kode}]');
fclose(fout_Kode);
end
It maybe simple for you all to solve this problem, but its really kinda difficult for me.... Is there anything wrong with my code? Im so grateful if someone can help my problem here... Thank you so much.... /.\ /.\ /.\
0 个评论
采纳的回答
Walter Roberson
2022-5-22
kode_annual = string(transpose(annual_equation));
change that to
kode_annual = compose("%.10g", annual_equation);
It is important for this purpose that you use double-quotes rather than single quotes for the format.
3 个评论
Walter Roberson
2022-5-22
In each iteration of the for kode loop, you open the same file for 'w' access, and write one string to the file, and fclose() it. However, 'w' access explicitly requests that any current content of the file is to be deleted. So your code only leaves whatever was last written into the file.
You have two possibilities:
- if you are sure that the filename is not going to change, then fopen() before the loop, and fclose() after the loop
- if the filename might change, then fopen() with 'a' access inside the loop.
Note:
multi_k_annual = dir_kode+sprintf('Kode Annual Mean (%s).txt', judul_kode);
Be careful with that. That code depends on dir_kode have a path separator that works for the current operating system. It would be more robust to use
multi_k_annual = fullfile(dir_kode, sprintf('Kode Annual Mean (%s).txt', judul_kode));
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!