How to save figures using mkdir if paths are variables?
3 次查看(过去 30 天)
显示 更早的评论
I am trying to save all of my figures into a directory that is generated using the date and time of running the code as the filename. The figures are being saved to a folder in a different directory. I would like to use mkdir to create the folders but I do not know how to get mkdir to read strings assinged to variables that contain the paths I want to save the figures to. My current directory is C:\Users\a\b\c\d\e\workspace but I want to save the figures to 'C:\Users\a\b\c\d\e\figures\dateTimeFolderName'. My final save folder structure should be 'C:Users\.....\figures\16-May-2022 13:41:03.617'. Is there a way to do this using mkdir?
savedir = 'C:\Users\a\b\c\d\e\figures\dateTimeFolderName'
startTime = 16-May-2022 13:41:03.617; % this is a date and time array that is produced when my code is run
if savefigs==1
mkdir savedir startTime
end
0 个评论
采纳的回答
Steven Lord
2022-5-16
编辑:Steven Lord
2022-5-16
Functions in MATLAB that accept text data can be called in one of two ways: command form or function form. Let me show you each of these forms for a function with which you may be familiar that accepts text data: help. I'll call it in three ways that are equivalent: one in command form and two in function form.
help pi % command form
help('pi') % function form
n = 'pi';
help(n) % also function form
When you call the function in command form you don't need to use parentheses or wrap the text in quotes, but what you pass in will literally be accepted as that text. So if I tried to use command form with the variable n I defined above, it won't work.
help n % This will NOT show the help for the pi function
Rather than using command form to call mkdir, use function form like the third line of the example above.
Oh, you should also look at the fullfile function. It will help you assemble your path string.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!