Export Data via fprintf printing something else besides NaN

Hi, I have a simple export loop that is writing the contents of a matrix to a text file for another system to read. The issue is that the other system doesn't like NaN as part of a numeric array and I need to print a blank space instead. How can I go about doing this?
On occasion my MacroData matrix Contains NaN's. Is there a way for me to do a find replace while I'm in the file itself, or simple replace the NaN output with a blank?
f_format = '%s%f%f\r\n';
count = 1;
for i = 1:length(UniqueDates)
fprintf(ftemp,f_format,datestr(UniqueDates(i,1),'mm/dd/yyyy'),MacroData(i,:));
end
fclose(ftemp);
Thanks a lot, Brian

 採用された回答

Titus Edelhofer
Titus Edelhofer 2013 年 11 月 25 日

1 投票

Hi,
a simple solution would be to print first into a string, process the string and then dump to the file, something like
for i = 1:length(UniqueDates)
str = sprintf(f_format,datestr(UniqueDates(i,1),'mm/dd/yyyy'),MacroData(i,:));
str = strrep(str, 'NaN', ' ');
fprintf(f_temp, '%s', str);
end
Titus

3 件のコメント

Brian
Brian 2013 年 11 月 25 日
Works perfect thanks Titus. I had never used sprintf before so I really wasn't certain of it's use.
Thanks again, Brian
John
John 約8時間 前
編集済み: John 約7時間 前
I realize this is an old thread, but I'll comment here as it seems topical.
I found myself needing to do something, similar but not exactly the same. Essentially I am trying to write out a Matlab array, and automatically generating a c/c++ declaration for the array. But the special floating-point values (i.e., NaN and Inf) are transcribed differently between C/C++ (NAN/INFINITY) and Matlab(NaN/Inf). It would be nice to have some control over the way in which sprintf/fprintf converts these values to text. At present I could do:
  • Use strrep as suggested by Titus above (functional but cumbersome, depending on complexity of exported declarations)
  • Add "#define NaN (NAN)" to the output file (inelegant and a potential source of conflicts).
  • define a variation of fprintf to encapsulate the replacements
Is there any other way to directly adjust how fprintf handles transcription of the special values?
Walter Roberson
Walter Roberson 約4時間 前
"Is there any other way to directly adjust how fprintf handles transcription of the special values?"
fprintf() has no configurability. Everything is controlled by the conversion flags, and there are no conversion flags that affect special values.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCharacters and Strings についてさらに検索

質問済み:

2013 年 11 月 25 日

コメント済み:

2026 年 3 月 18 日 19:21

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by