How can I keep my GUI invisible while plotting?

Hi!
In my GUI, I run 2 plots on separate axes in OpeningFcn. When The GUI becomes visible, one has been plotted (the first one in the code) but the other axes are blank momentarily while it waits for the plot to finish. This looks very sloppy - how can I make the GUI wait until both plots are finished before it becomes visible?
Thanks! Kaitlyn

 채택된 답변

Sean de Wolski
Sean de Wolski 2012년 7월 2일
편집: Sean de Wolski 2012년 7월 2일

0 개 추천

In the opening function
set(handles.figure1,'visible','off');
Then when you're done with all of that plotting stuff:
set(handles.figure1,'visible','on');
Note: figure1 is the default GUIDE tag; you will have to use whatever tag you defined the figure by.

댓글 수: 2

Kaitlyn
Kaitlyn 2012년 7월 2일
Hmmmm, I actually tried that already but it seems to make no difference. The axes are still blank for a moment before the second plot appears. Thank you for the response!
Kaitlyn
Kaitlyn 2012년 7월 2일
Aha! It seems the trick is to insert the invisibility statement after each plot so that the GUI remains hidden; then turn visibility on at the end, as you suggested. Thanks again

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by