フィルターのクリア

How can i save an array in a txt file, with every number of the array in a different row?

2 ビュー (過去 30 日間)
Mirko Rizzi
Mirko Rizzi 2023 年 7 月 31 日
コメント済み: Voss 2023 年 8 月 15 日
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

回答 (1 件)

Voss
Voss 2023 年 7 月 31 日
Something like this?
% a matrix
M = magic(4)
M = 4×4
16 2 3 13 5 11 10 8 9 7 6 12 4 14 15 1
% write to file, using (:) to convert to column vector first
writematrix(M(:),'test.txt')
% check the contents of the file
type test.txt
16 5 9 4 2 11 7 14 3 10 6 15 13 8 12 1

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by