Saving profile information in a loop

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.

Answers (1)

for K = 1 : 5
dirname = sprintf('profile_iteration_%3d', K);
profsave(information, dirname);
end

Categories

Tags

Asked:

on 10 Jun 2015

Answered:

on 10 Jun 2015

Community Treasure Hunt

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

Start Hunting!