How to save a matrix as text file?
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Emerson De Souza
am 28 Mär. 2011
Kommentiert: Walter Roberson
am 13 Jul. 2019
I want to save a matrix as text file.
Each column should be separated by tab.
The output file should be read with any text editor
When the output is opened, it should display the numbers
in the same way it looks like in Matlab.
Thank you for your help
Emerson
0 Kommentare
Akzeptierte Antwort
Matt Fig
am 28 Mär. 2011
One way is to use FPRINTF.
A = round(rand(6,7)*9) % Write this to file.
fid = fopen('Mymatrix.txt','wt');
for ii = 1:size(A,1)
fprintf(fid,'%g\t',A(ii,:));
fprintf(fid,'\n');
end
fclose(fid)
EDIT
Changed the 'w+' to 'wt' in the FOPEN call.
If you have floating point numbers, you may want to use '%20.18f \t' instead of '%g\t' or similar. See FPRINTF for format specifiers.
0 Kommentare
Weitere Antworten (3)
Walter Roberson
am 16 Dez. 2017
You could also consider dlmwrite telling it to use \t as the delimiter.
You could also consider using
save('MyMatrix.txt', 'A', '-double', '-tab')
Where A is the name of the variable
3 Kommentare
Walter Roberson
am 5 Feb. 2019
double precision. Without the -double only about 7 digits are written out, about as much as needed to reproduce single precision numbers.
Siehe auch
Kategorien
Mehr zu File Operations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!