How to save a graph using print and rational numbers within image name without changing the file format?

1 回表示 (過去 30 日間)
MOTIVATION: The lines below display one example of how I'm trying to name a graph and save the image to the hard disk:
i=10.5;
f=figure;
x = 0:pi/100:2*pi;
y = sin(x-i);
h=plot(x,y);
title(sprintf('ATITLE%g',i));
print(f,'-dtiff', sprintf('ATITLE%g',i));
PROBLEM: When you run these lines, you will see that the file saved is not ATITLE10.5.tif but only ATITLE10.5 anything that I can't use.
QUESTION: I wonder if someone knows how to correct these lines so that the file saved is ATITLE10.5.tif?
I already tried the following approach suggested by Walter:
print(f,'-dtiff', genvarname(sprintf('ATITLE%g',i)));
But the result is ATITLE100x2E5.tif and does not help either.
I thank you in advance for your help Emerson

採用された回答

Image Analyst
Image Analyst 2012 年 2 月 4 日
Our daily "how do I save a figure?" question. See the FAQ:
If you insist on "rolling your own" then try this:
baseFileName = sprintf('ATITLE%g',i)
folder = pwd;
fullFileName = fullfile(folder, [baseFileName, '.tif'])
title(baseFileName);
print(f,'-dtiff', fullFileName);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFunctions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by