Create for a n*n matrix n files txt/
Ältere Kommentare anzeigen
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?
Akzeptierte Antwort
Weitere Antworten (2)
Maurizio
am 23 Okt. 2011
0 Stimmen
1 Kommentar
the cyclist
am 23 Okt. 2011
ithFileName=['filename',num2str(i),'.txt'];
fopen(ithFileName,'w')
etc
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!