Write matrix to text file

Hello,
I am trying to write a matrix 'A' to a text file. I would like the data written to file like this:
A =
2 0 2 1 2 0
2 2 2 1 0 0
1 2 2 0 0 2
The code given below does not contain the 'A = '. How can I also include the 'A = ' to be written to the file also? Thanks for your help and time.
Here is the code that I have so far:
%%Generation of Random 3 x 6 Matrix
A = randi([0,2],3,6);
dlmwrite('myFile.txt',A,'delimiter','\t')

4 件のコメント

Walter Roberson
Walter Roberson 2016 年 3 月 7 日
編集済み: Walter Roberson 2016 年 3 月 7 日
Where are the tabs to appear on the "A =" line and on the empty line after that? Is there to be a tab before the first number on each line?
monkey_matlab
monkey_matlab 2016 年 3 月 7 日
Hello,
There should be a tab before the first number on each line.
Walter Roberson
Walter Roberson 2016 年 3 月 7 日
What should be the tabs on the 'A =' line and the visually empty line after that?
monkey_matlab
monkey_matlab 2016 年 3 月 7 日
編集済み: monkey_matlab 2016 年 3 月 7 日
Can it be saved like:
A =
\newline
matrix
I am not sure how to answer your question. I would like the constant and matrix be saved bascially the way it is displayed in Matlab:
Thanks for your help and time!

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

回答 (1 件)

Walter Roberson
Walter Roberson 2016 年 3 月 7 日

0 投票

output = evalc(A);
fid = fopen('myFile.txt', 'wt');
fwrite(fid, output);
fclose(fid);

カテゴリ

製品

タグ

質問済み:

2016 年 3 月 7 日

回答済み:

2016 年 3 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by