saving a figure as .png with name of a parameter
1 回表示 (過去 30 日間)
古いコメントを表示
Hallo everyone, I am trying to save a fig as an image (.png) but I want the .png file to have a specific name of one parameter. For exapmle, I have created the str called "name"
name=strcat('quicklook_',dd, '/', mm, '/', yyyy);
and I am trying to save it with the following command
print(name,'-dpng','-r300')
but it doesn't work.
Any ideas?
2 件のコメント
Rik
2018 年 6 月 25 日
What do you mean with doesn't work? Do you get an error? You are aware that slashes in filenames generally result in folders being created?
採用された回答
ES
2018 年 6 月 25 日
You cant have "/" in your file names. Can you be happy with say
name=strcat('quicklook_',dd, '_', mm, '_', yyyy);
?
0 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!