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

 Risposta accettata

Sean de Wolski
Sean de Wolski il 2 Lug 2012
Modificato: Sean de Wolski il 2 Lug 2012
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 Commenti

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!
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

Accedi per commentare.

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by