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 个)
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!