How to save a graph using print and rational numbers within image name without changing the file format?
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!