How to use the value of a variable to the file numbering? I need 10 csv files with 10 random arrays ...A1, A2, ... A10
for i=1:10
A=rand(100,100);
writecsv("A(i)???.csv", A);
end;
Paul
How to use the value of a variable to the file numbering? I need 10 csv files with 10 random arrays ...A1, A2, ... A10
for i=1:10
A=rand(100,100);
writecsv("A(i)???.csv", A);
end;
Paul