How can i save an array in a txt file, with every number of the array in a different row?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Voss
am 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
1 Kommentar
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!