How can I create a new folder to save the outputs in matlab? Is there any certain function for it?
Thank you

 Akzeptierte Antwort

Image Analyst
Image Analyst am 26 Jun. 2016

1 Stimme

Yes. mkdir()
if ~exist(folderName, 'dir')
mkdir(folderName);
end

Weitere Antworten (0)

Kategorien

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by