How to go back to the previous figure to edit?

87 vues (au cours des 30 derniers jours)
SC
SC le 2 Avr 2019
Hi,
I have figures fh1 and fh2. I want to create fh1 first, and then create fh2, but after that to go back to edit fh1. How can I do that?
I tried below code, but it doesn't work (it modied fh2 instead of fh1).
Many thanks!
fh1=figure();
title('001')
fh2=figure();
title('002')
getimage(fh1);
title('003')

Réponse acceptée

Walter Roberson
Walter Roberson le 2 Avr 2019
figure(fh1)
will make fh1 the active figure again.
However there are lot of different ways to accidentally lose focus. I suggest you read https://www.mathworks.com/matlabcentral/answers/317181-non-deterministic-behavior-with-multiple-figures#answer_247493

Plus de réponses (0)

Produits


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by