How to go back to the previous figure to edit?

92 Ansichten (letzte 30 Tage)
SC
SC am 2 Apr. 2019
Beantwortet: Walter Roberson am 2 Apr. 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')

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 2 Apr. 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

Weitere Antworten (0)

Produkte


Version

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by