How can i save an array in a txt file, with every number of the array in a different row?
3 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Voss
on 31 Jul 2023
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
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!