Azzera filtri
Azzera filtri

How can I save matrix to .txt file?

232 visualizzazioni (ultimi 30 giorni)
Teemu
Teemu il 13 Mar 2013
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?

Risposta accettata

Friedrich
Friedrich il 13 Mar 2013
Modificato: Friedrich il 13 Mar 2013
Hi,
use dlmwrite
a = rand(64,60);
dlmwrite('filename.txt',a)
  5 Commenti
Aravind Rao Karanam
Aravind Rao Karanam il 8 Gen 2022
dlmwrite is not recommended anymore. Use writematrix
a = rand(64,60);
writematrix(a, 'filename.txt')

Accedi per commentare.

Più risposte (2)

Sudhir Rai
Sudhir Rai il 17 Nov 2020
Use this to get perfect matrix in .txt
X = rand(64,60)
save ('filename.txt', 'X', '-ascii')

Almuthana Alharbi
Almuthana Alharbi il 11 Apr 2018
Thanks

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by