Error in saveas, Invalid figure handle

125 vues (au cours des 30 derniers jours)
Daphne PARLIARI
Daphne PARLIARI le 16 Jan 2020
Commenté : Ivan Spector le 5 Mai 2022
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!

Réponse acceptée

Star Strider
Star Strider le 16 Jan 2020
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 commentaires
Geoff Hayes
Geoff Hayes le 5 Mai 2022
@Ivan Spector - you may be able to use imwrite to save the image to file.
Ivan Spector
Ivan Spector le 5 Mai 2022
BOOM! Thanks. I was using 'imread' so I'm not sure why it didn't strike me to use this. Thank you very much.

Connectez-vous pour commenter.

Plus de réponses (1)

Geoff Hayes
Geoff Hayes le 16 Jan 2020
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)
where gcf is the current figure handle.
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).
  2 commentaires
Daphne PARLIARI
Daphne PARLIARI le 17 Jan 2020
Good morning, thank you for your answer.
Please see attached files:
.xlsx is the input file I must do things with and .jpg is the plot I am producing with the part of code you mentioned above. I want mean daily values for the entire 2015, that's why I used k = 1:365.
Do you still think that it works in a false way?
Daphne PARLIARI
Daphne PARLIARI le 17 Jan 2020
Modifié(e) : Daphne PARLIARI le 17 Jan 2020
I just tried
% Daily mean T
for k = 1:365
index = doy == k;
B(k,1) = k;
B(k,2) = mean(A.ToutoC(index));
fig = plot(B(:,1),B(:,2));
ylabel([vars{1},' (',varunits{1},')'],'fontsize',12,'fontweight','bold')
xlabel( 'Day of year')
title(['Mean daily ', vars{1},' for station ', namestr, ' 2015'])
hold on
end
out_file=[output_path,'\',namestr,'\',strrep(vars{1},' ','_'), '\Mean_Daily_T_2015.jpg'];
saveas(fig,out_file)
hold off
and it returns the same plot as before but in much less time. But if I use hold on/off to the other daily mean plots, too, then they come out really messed up...

Connectez-vous pour commenter.

Catégories

En savoir plus sur Printing and Saving dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by