Filter löschen
Filter löschen

Create for a n*n matrix n files txt/

1 Ansicht (letzte 30 Tage)
Maurizio
Maurizio am 23 Okt. 2011
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

the cyclist
the cyclist am 23 Okt. 2011
Within the loop, you can construct the file names like this:
['filename',num2str(i),'.txt']

Weitere Antworten (2)

Walter Roberson
Walter Roberson am 23 Okt. 2011

Maurizio
Maurizio am 23 Okt. 2011
Thanks cyclist.
but I don't understand how to insert on my loop the solution tat you wrote me. L et take as example a 2*2 matrix.
I will do a
for 1:2
fid=fopen(...,w);
fprintf(fid,'%6.2f %3.5f',A(i,:))
fclose(fid)
end
  1 Kommentar
the cyclist
the cyclist am 23 Okt. 2011
ithFileName=['filename',num2str(i),'.txt'];
fopen(ithFileName,'w')
etc

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by