MATLAB: Create for a n*n matrix n files txt/

fopenfor loopfprintf

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?

Best Answer

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