How do I move from one figure to the other in a GUI using GUIDE (that is, from Figure1 to Figure2 and back to Figure1)?

조회 수: 2 (최근 30일)
Dear Forum Members,
I am creating a GUI (using GUIDE) having two figures namely, Figure1 and Figure2, respectively. I would like to know the code to use in order to move from Figure1 to Figure2 and back to Figure1.
Kindly do the needful.
I look forward to hearing from you.
Thanks.
Kind regards,
Gbolagade.
  댓글 수: 2
Voss
Voss 2023년 8월 16일
편집: Voss 2023년 8월 16일
What do you mean by "to move" in this case? Do you mean to make Figure 1 the current figure (i.e., the window that has focus), then make Figure 2 the current figure, then make Figure 1 the current figure again?
Gbola
Gbola 2023년 8월 18일
Dear Voss and other Community Members,
In this case, I mean to make Figure 1 the current figure (i.e., the window that has focus), then make Figure 2 the current figure, then make Figure 1 the current figure again.
Thanks.
Gbola.

댓글을 달려면 로그인하십시오.

답변 (1개)

Voss
Voss 2023년 8월 18일
Where hFig1 is the handle to your Figure1 and hFig2 is the handle to your Figure2
figure(hFig1) % make Figure1 current
figure(hFig2) % make Figure2 current
figure(hFig1) % make Figure1 current again
  댓글 수: 1
Image Analyst
Image Analyst 2023년 8월 18일
That's if Figure1 and Figure2 were both created by the one GUIDE program. I'm not exactly sure of the situation but maybe you could explain it for the case where he has two GUIDE programs and the main figure in one program has the "tag" figure1, and the tag for the other main figure has the tag figure2. So maybe you can explain how program 1 can activate program 2, and how program 2 can activate program 1. Or maybe @Gbola can clarify.
More info in the FAQ:

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by