Error in saveas, Invalid figure handle
94 次查看(过去 30 天)
显示 更早的评论
Hello!
I am writing a code (see attached) which is turning out to be a bit long... and when I try to produce many plots I get the error
Error using saveas (line 83)
Invalid figure handle.
I suppose this is happening because the system gets overwhelmed by the many plots, right?
Is there a way to fix it but still get all the graphs I need?
Thank you!
0 个评论
采纳的回答
Star Strider
2020-1-16
I cannot run your code because I do not have the necessary files.
However:
%% Let's plot T and RH timeseries
hf1 = figure;
idx = A.ToutoC <= 45 & A.ToutoC >= -10;
fig = plot(A.dec_time(idx), A.ToutoC(idx));
ylabel([vars{1},' (',varunits{1},')'],'fontsize',12,'fontweight','bold')
xlabel('Date')
title(['Measured ', vars{1},' for station ', namestr, ' 2015'])
out_file=[output_path,'\',namestr,'\',strrep(vars{1},' ','_'), '\T_plot_2015.jpg'];
saveas(fig,out_file)
(I added ‘hf1’ for this illustration.) Here, ‘fig’ is a handle to a line object, not a figure object, and ‘hf1’ is a handle to the figure object.
Consider the differences between ‘hf1’ and ‘fig’.
Yes, it¹s complicated. So is everything else you will ever encounter!
5 个评论
Ivan Spector
2022-5-5
BOOM! Thanks. I was using 'imread' so I'm not sure why it didn't strike me to use this. Thank you very much.
更多回答(1 个)
Geoff Hayes
2020-1-16
Daphne - from saveas, the first input parameter is a handle to the figure. You've named this fig in your code, but it seems to be the handle to the plot graphics object instead
for k = 1:365
index = doy == k; %An to doy isoutai me k, tote o index einai alithis (=1). Pseudis=0
B(k,1) = k;
B(k,2) = mean(A.ToutoC(index));
fig = plot(B(:,1),B(:,2)); % <------ fig is a handle to the plot graphics object
ylabel([vars{1},' (',varunits{1},')'],'fontsize',12,'fontweight','bold')
xlabel( 'Day of year')
title(['Mean daily ', vars{1},' for station ', namestr, ' 2015'])
out_file=[output_path,'\',namestr,'\',strrep(vars{1},' ','_'), '\Mean_Daily_T_2015.jpg'];
saveas(fig,out_file)
end
Try using
saveas(gcf,out_file)
Out of curiosity, do you mean to be creating a file on each iteration of the loop? Your file name seems to be the same on every iteration so you would just be overwriting the file each time you call saveas. Perhaps you want to just write to file after all 365 iterations have been completed? If so, see hold which will retain the current plot (if that is what you need or want to do).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!