what is the uiwait?
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
what is the uiwait?
then, how to use it?
If you know, please tell me ,thank you!!
1 Kommentar
Akzeptierte Antwort
Matt Fig
am 18 Aug. 2012
Bearbeitet: Matt Fig
am 18 Aug. 2012
uiwait(FIG_handle) blocks execution until either UIRESUME is called or the figure FIG is destroyed (closed). uiwait with no input arguments is the same as uiwait(gcf). In this example, a figure is created along with a pushbutton. After the figure is created, uiwait is called until you push the button. When you push the button, the callback calls uiresume.
f = figure('pos',[30 800 250 150]);
h = uicontrol('Position', [20 20 200 40], 'String', 'Continue', ...
'Callback', 'uiresume(gcbf);close(gcbf)');
disp('This will print immediately');
uiwait(gcf);
disp('This will print after you click Continue');
2 Kommentare
Weitere Antworten (2)
Image Analyst
am 18 Aug. 2012
uiwait() will pause execution of your program until you do something, such as close or interact with some dialog box. For example if you do
msgbox('This will not stop. It will keep running code.');
Then it will pop up a message box and continue on with the subsequent code. It won't wait for the user to click the OK button. But if you wrap it in a uiwait(), it will wait for the user to click OK:
uiwait(warndlg('You have an anomalous situation here. Click OK to continue'));
uiwait(msgbox('I will wait for you to click OK.'));
0 Kommentare
Azzi Abdelmalek
am 18 Aug. 2012
Bearbeitet: Azzi Abdelmalek
am 18 Aug. 2012
%uiwait blocks the execution of the program until a current figure is closed
%example
t=0:0.1:2*pi;y=sin(t);
plot(t,y)
uiwait(gcf)%
%at this point the program will wait you close the curent figure and the continue
y=cos(t);
plot(t,y)
2 Kommentare
Siehe auch
Kategorien
Mehr zu Maintain or Transition figure-Based Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!