Hey there,
I save a matrix into a file like that: save(filepath,'mtrx', '-ascii');. Is there a way to say matlab to write 0 instead of 0.0000000e+000 values!? It would be nice because it would be faster and easier to see which values differ from zero :)
Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I suggest using DLMWRITE instead of SAVE since you're dealing with ASCII files. It will give you more control over the formatting. For example, you could create an output file delimited by spaces with a field width of 10 and 6 digits after the decimal point (see more about format specifiers here):
|
||||
|
|
savewill be an order of magnitude faster. For formatted ASCII output use a uniform figure format. Mixed figure formats suffer from a huge performance penalty. – zellus May 25 '11 at 16:34