how to name a figure using a variable name

15 次查看(过去 30 天)
I have a figure and want to save this as a tiff or jpeg I have changed a date into variable = 'van190392 15' which I want to use in the file name Such that I get as filename;van190392 15.tiff or van190392 15.jpeg I get an error message, it seems not being allowed/possible

采纳的回答

the cyclist
the cyclist 2016-5-15
编辑:the cyclist 2016-5-15
variable = 'van190392 15';
figure
plot(rand(3,4))
filename = [variable,'.tif'];
print('-dtiff',filename)
  2 个评论
the cyclist
the cyclist 2016-5-22
Moved Johannes comment from an "answer" to here. He wrote,
"Thanks for the help, functions great"
Image Analyst
Image Analyst 2016-5-23
A related note: To get a figure to have a name you want, instead of like "Figure 1", "Figure 2", etc., you can turn the 'NumberTitle' property 'Off' and set the 'name' property of the figure to a literal string or a string variable:
% Give a name to the title bar/figure.
set(gcf, 'Name', 'Demo by ImageAnalyst', 'NumberTitle', 'Off')

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Printing and Saving 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by