Problem with export txt file and the delimited value

3 次查看(过去 30 天)
Hi all,
I want to export the results of a moving average of period 5 to a .txt file. But when I do the following code:
dlmwrite(newName, fresult,'precision','%.5f');
Delimited in the .txt file it is as follows:
1.12084
1.12091
1.12094
1.12091
1.12086
How I can do to appear "," or ";" provided that the number of decimal places is maintained.
thank you very much

采纳的回答

Walter Roberson
Walter Roberson 2015-5-10
dlmwrite() only puts delimiters between columns, as otherwise programs would think that there was another column that happened to be empty.
You might want to use
dlmwrite(newname, fresult', 'precisiton', '%.5f');
to put everything on one line.
But if you really need the single column and you need ';' on the end of the lines, then you can hack a little:
dlmwrite(newName, fresult,'precision','%.5f;');
notice the delimiter added to the end of the precision specification.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

尚未输入任何标签。

产品

Community Treasure Hunt

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

Start Hunting!

Translated by