format data into string and write a txt file
Show older comments
Hi,
I have the following cell,
a={[1E5 0 0 7.82E12 0]
[-1 0 0 -1 0]};
and I want to write a text file with the following format
1.0000000000000000E+05 0.0000000000000000E+00 0.0000000000000000E+00 7.8200000000000000E+12 0.0000000000000000E+00
-1.0000000000000000E+00 0.0000000000000000E+00 0.0000000000000000E+00 -1.0000000000000000E+00 0.0000000000000000E+00
As in two blank spaces at the beginning of the line if the first value is positive (line 1) and one blank space if it is negative (line 2), the "-" uses one space. There are also two blank spaces in between the values (if the value is negative the "-" uses one of those blank spaces).
First I tried converting a to a string cell:
for i=1:2
a{i}=num2str(a{i},'%.16e');
end
And I get this:
a =
2×1 cell array
{'1.0000000000000000e+050.0000000000000000e+000.0000000000000000e+007.8200000000000000e+120.0000000000000000e+00' }
{'-1.0000000000000000e+00 0.0000000000000000e+00 0.0000000000000000e+00-1.0000000000000000e+00 0.0000000000000000e+00'}
There are no blank spaces at all. Is it possible to specify the number of blank spaces in between the values?
Thank you,
Accepted Answer
More Answers (1)
madhan ravi
on 24 Oct 2018
Edited: madhan ravi
on 25 Oct 2018
a={[1E5 0 0 7.82E12 0]
[-1 0 0 -1 0]};
dlmwrite('sample.txt',a,'delimiter','\t','precision','%0.16e')
8 Comments
madhan ravi
on 25 Oct 2018
Try the updated answer
madhan ravi
on 25 Oct 2018
1.0000000000000000e+05 0.0000000000000000e+00 0.0000000000000000e+00 7.8200000000000000e+12 0.0000000000000000e+00
-1.0000000000000000e+00 0.0000000000000000e+00 0.0000000000000000e+00 -1.0000000000000000e+00 0.0000000000000000e+00
madhan ravi
on 25 Oct 2018
the above is the format in the text file
FM
on 25 Oct 2018
madhan ravi
on 25 Oct 2018
Edited: madhan ravi
on 25 Oct 2018
_it writes down both rows of a in the same line in the text file_
no there are two rows in my text file
madhan ravi
on 25 Oct 2018
_I try what you suggest I do get a blank space between the values_
thats how you can distinguish the values right??
madhan ravi
on 25 Oct 2018
see attached file
FM
on 25 Oct 2018
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!