How can I save matrix to .txt file?
291 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Friedrich
le 13 Mar 2013
Modifié(e) : Friedrich
le 13 Mar 2013
Hi,
use dlmwrite
a = rand(64,60);
dlmwrite('filename.txt',a)
5 commentaires
Aravind Rao Karanam
le 8 Jan 2022
dlmwrite is not recommended anymore. Use writematrix
a = rand(64,60);
writematrix(a, 'filename.txt')
Plus de réponses (2)
Sudhir Rai
le 17 Nov 2020
Use this to get perfect matrix in .txt
X = rand(64,60)
save ('filename.txt', 'X', '-ascii')
0 commentaires
Voir également
Catégories
En savoir plus sur Text Files dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!