Ältere Kommentare anzeigen
Hi,
I have an m file which generates a figure. I run this m file daily. But each day, I have to name and manually save the figure. Is there a way to automatically save the figure with todays date as the file name? I know how to automatically save the figure but I am not sure how to use todays date as the file name. Thanks.
Akzeptierte Antwort
Weitere Antworten (1)
Honglei Chen
am 27 Jan. 2012
You can use imwrite and date
doc imwrite
doc date
3 Kommentare
Syed Abbas
am 27 Jan. 2012
Walter Roberson
am 27 Jan. 2012
today = date();
thisfile = ['C:\docs\' today];
saveas(thisfile)
Syed Abbas
am 31 Jan. 2012
Kategorien
Mehr zu Manage Products finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!