How to let the matlab to remember the previous directory?

12 次查看(过去 30 天)
I have this task daily:
Many plots are generated within the same "run". Then I check each of them. If it's good, I save it through "file" -> "save as".
However, for every save I need to choose the directory again. I wonder if I can setup matlab and let it to remember the last directory just seconds ago like many other software.
Thanks.

回答(3 个)

Scott Webster
Scott Webster 2014-12-18
If you save your plots using a matlab command (e.g. print) then you can specify the path. You can also use a command like uiputfile to prompt the user for a filename etc...
pathname = 'C:\';
reply = input('Save plot? (y/n) (default n)','s');
if reply == 'y'
[plotfile,plotpath] = uiputfile('*.png','Select plot file name',pathname);
h=gcf;
plotfilepath=strcat(plotpath,plotfile);
print(h,'-noui','-r300','-dpng',plotfilepath);
end
  1 个评论
Sean de Wolski
Sean de Wolski 2014-12-18
Pretty sure you'll have to take this approach as I believe it's the OS that selects the starting directory for save.

请先登录,再进行评论。


John
John 2015-1-15
When you "save", matlab always prompt the user interface for folders and file name. Instead of going to "default' directory, matlab should remember the last directory and goes to there, at least as an option like many other software.

Azzi Abdelmalek
Azzi Abdelmalek 2014-12-18
Create a cell array where you can store your directories

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by