How can I write matrix elements to file Are contiguous , including a comma?

1 回表示 (過去 30 日間)
Ameligege
Ameligege 2015 年 3 月 4 日
コメント済み: Guillaume 2015 年 3 月 4 日
I use this function Are contiguous , x=[1 2;3 4;5 6]
x =
1 2
3 4
5 6
>> dlmwrite('myFile.txt', x)
and this what is written in myFile.txt
1,2
3,4
5,6
I want the result to be
1,2,3,4,5,6
Can I do this and how?

採用された回答

Guillaume
Guillaume 2015 年 3 月 4 日
Convert your matrix into a row vector:
dlmwrite('myfile.txt', reshape(x', 1, []))
is one way to do it.
  3 件のコメント
Ameligege
Ameligege 2015 年 3 月 4 日
If any one have another way by using dlmwrite ,I want to try it??
Guillaume
Guillaume 2015 年 3 月 4 日
the ' is the transpose operator. I actually should have used the .', ctranspose in case you have complex numbers.
Because matlab is column major, you need to transpose the matrix before reshaping if you want to arrange by row.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by