Saving profile information in a loop
Ältere Kommentare anzeigen
I am running many iterations of a piece of code and I want to save the profile information from each iteration separately but it saves to the working directory or the directory typed as the last argument in the profsave. I attempted to input a string constructed using the iteration data but the function seems incapable of handling anything not in the form of profsave (information,'filename'). The 'filename' part will not work if I place the string variable there without the apostrophes flanking it and when they are there the function names the output the name of the string.
On a side note this is not a problem with the save() function which I used in the same program to record the workspace variables.
Antworten (1)
Walter Roberson
am 10 Jun. 2015
for K = 1 : 5
dirname = sprintf('profile_iteration_%3d', K);
profsave(information, dirname);
end
Kategorien
Mehr zu Performance and Memory 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!