Create a folder for each iteration and save workspace and figures
조회 수: 22(최근 30일)
표시 이전 댓글
Hello, I need to save the workspace and figures for each iteration. The resulting workspace and figures should be placed in a new folder for each iteration. The iterations are a function of two parameters A and B, so I have two 'for' loops.
For IdxParaA=1:length(ParaA)
For IdxParaB=1:length(ParaB)
alpha=ParaA(IdxParaA)
beta=ParaB(IdxParaB)
...stuff to run...
%HERE NEED TO CREATE A FOLDER AND SAVE BOTH WORKSPACE + FIGURES
cd('C:\Output\Results_"value of IdxParaA"_"value of IdxParaB"
cd('C:\Program')
end
end
I have 5 values for ParaA and 4 values for ParaB so in the end I need to have 20 folders named as:
C:\Output\Results_1_1
C:\Output\Results_1_2
...
C:\Output\Results_1_4
... ...
C:\Output\Results_5_4
Please let me know if this is not clear or there is a post that answers it
댓글 수: 0
답변(2개)
Star Strider
2015년 4월 17일
I wouldn’t save them each in a different directory, simply a different .mat file. See the documentation for save, load, and matfile for details. You’ll have all your variables — regardless of type — in each .mat file, and you’ll be able to load all or some of the variables into your workspace as you need them later.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!