Effacer les filtres
Effacer les filtres

Can't set the current figure inside a function

1 vue (au cours des 30 derniers jours)
Dima
Dima le 4 Nov 2012
Hi. I have encountered the following problem: I use a GUI and in the Callback function create new figure, which, obviously, appears at the top of the previous one. However, I need to make the old figure to appear on top, but setting
set(0,'CurrentFigure',old_figure)
at the end of callback function does not work for some reason, i.e. new figure still appears on top (which is little inconvenient for my case). Any suggestions?

Réponse acceptée

Walter Roberson
Walter Roberson le 4 Nov 2012
figure(old_figure)
should raise it and make it current. Setting the current figure is, as best I recall, defined to not raise it.
  1 commentaire
Dima
Dima le 4 Nov 2012
Thanks a lot, this works)

Connectez-vous pour commenter.

Plus de réponses (1)

Matt Fig
Matt Fig le 4 Nov 2012
Try changing the order of the children of root.
figure
figure
pause(1)
% Now fig 2 is on top.
set(0,'children',flipud(get(0,'children')))
% Now fig 1 is on top.

Catégories

En savoir plus sur Graphics Object Programming dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by