How to go back to the previous figure to edit?

74 次查看(过去 30 天)
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')

采纳的回答

Walter Roberson
Walter Roberson 2019-4-2
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Title 的更多信息

产品


版本

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by