what is the uiwait?
显示 更早的评论
what is the uiwait?
then, how to use it?
If you know, please tell me ,thank you!!
1 个评论
Jan
2012-8-18
Did you read "help uiwait" and "doc uiwait" already?
采纳的回答
更多回答(2 个)
Image Analyst
2012-8-18
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.'));
Azzi Abdelmalek
2012-8-18
编辑:Azzi Abdelmalek
2012-8-18
%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 个评论
Azzi Abdelmalek
2012-8-18
look at the example given by Matt Fig
类别
在 帮助中心 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!