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.
回答(1 个)
Walter Roberson
2015-6-10
for K = 1 : 5
dirname = sprintf('profile_iteration_%3d', K);
profsave(information, dirname);
end
类别
在 帮助中心 和 File Exchange 中查找有关 Profile and Improve Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!