How can i save an array in a txt file, with every number of the array in a different row?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have an array with a lot of numbers, and i need to export it in a .txt file, but every number needs to be in a different row
댓글 수: 0
답변 (1개)
Voss
2023년 7월 31일
Something like this?
% a matrix
M = magic(4)
% write to file, using (:) to convert to column vector first
writematrix(M(:),'test.txt')
% check the contents of the file
type test.txt
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!