Create for a n*n matrix n files txt/
古いコメントを表示
I have a big problem with a for loop. If for example I have a 5*5 matrix and for each row I would like to create 5 different .txt file how can i do? Of course with a for loop but how can I wrote on matlab each time to save the txt file with different name as for example namefile(i).txt?
採用された回答
その他の回答 (2 件)
Walter Roberson
2011 年 10 月 23 日
1 投票
Maurizio
2011 年 10 月 23 日
0 投票
1 件のコメント
the cyclist
2011 年 10 月 23 日
ithFileName=['filename',num2str(i),'.txt'];
fopen(ithFileName,'w')
etc
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!