How can i export a data to tab (10 character space) separated text file...
Show older comments
I have a n*m matrix at matlab and i need to export them to a txt file and it is important to have 2 features:
1- data should be separated by tab(\t)
2- they have to be scientific number with 8 number precision at this format 0.00000000
Accepted Answer
More Answers (1)
Walter Roberson
on 23 Jun 2013
fmt_item = '%f.8';
delim = '\t';
nl = '\n';
fmt = [repmat( [fmt_item delim], 1, size(YourMatrix,2)-1 ), fmt_item, nl];
fid = fopen('YourOutput.txt', 'wt');
fprintf(fid, fmt, YourMatrix .' );
fclose(fid);
2 Comments
Masoud Ghanbari
on 23 Jun 2013
Masoud Ghanbari
on 23 Jun 2013
Edited: Masoud Ghanbari
on 24 Jun 2013
Categories
Find more on Shifting and Sorting Matrices 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!