How can I save matrix to .txt file?
246 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Teemu
am 13 Mär. 2013
Kommentiert: Aravind Rao Karanam
am 8 Jan. 2022
I have numerical matrix size of 64*60 and I like to save it to .txt file. How can I do it as easy as possible? without repeating %d with fprintf?
0 Kommentare
Akzeptierte Antwort
Friedrich
am 13 Mär. 2013
Bearbeitet: Friedrich
am 13 Mär. 2013
Hi,
use dlmwrite
a = rand(64,60);
dlmwrite('filename.txt',a)
5 Kommentare
Aravind Rao Karanam
am 8 Jan. 2022
dlmwrite is not recommended anymore. Use writematrix
a = rand(64,60);
writematrix(a, 'filename.txt')
Weitere Antworten (2)
Sudhir Rai
am 17 Nov. 2020
Use this to get perfect matrix in .txt
X = rand(64,60)
save ('filename.txt', 'X', '-ascii')
0 Kommentare
Siehe auch
Kategorien
Mehr zu Text Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!