problem with saving data as .mat file
17 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi !
i have an output of a for loop. i want to save this output as .mat file.
how could i do this ?
I tried with save and fprintf but no results...
thank you for help
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 7 Dez. 2012
for K = 1 : 20
filename = sprintf('File_%03d.mat', K);
save(filename, 'K');
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT Files 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!