How can I save matrix to .txt file?
248 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Friedrich
2013 年 3 月 13 日
編集済み: Friedrich
2013 年 3 月 13 日
Hi,
use dlmwrite
a = rand(64,60);
dlmwrite('filename.txt',a)
5 件のコメント
Aravind Rao Karanam
2022 年 1 月 8 日
dlmwrite is not recommended anymore. Use writematrix
a = rand(64,60);
writematrix(a, 'filename.txt')
その他の回答 (2 件)
Sudhir Rai
2020 年 11 月 17 日
Use this to get perfect matrix in .txt
X = rand(64,60)
save ('filename.txt', 'X', '-ascii')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Text Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!