Print Table to a File.
3 ビュー (過去 30 日間)
古いコメントを表示
I have this code
VarNames={'Col1', 'Col2'};
RowNames={'Row1', 'Row2'};
A = [1 2;3 5];
Ta = array2table(A,'VariableNames',VarNames,'RowNames',RowNames)
When I execute this i get table printed properly formatted but on to a screen.
I like similar tables one after other several of them, to a file properly formatted every time.
all tables are of equal size. I tried writetable but that does not seem to be the answer.
How do I do it? Thanks in advance.
2 件のコメント
採用された回答
Image Analyst
2018 年 5 月 20 日
Try fopen(), fprintf(), and fclose(). With those three functions you can make it look exactly how you want it to look.
2 件のコメント
Walter Roberson
2018 年 5 月 21 日
Make sure you use width specifications on all of your % formats, to get everything lined up the way you want.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Low-Level File I/O についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!