How To Write a Long-Decimal Number Data With Fprintf?
조회 수: 7 (최근 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!