How can I save matrix to .txt file?
조회 수: 276 (최근 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!