how to close waitbar
97 次查看(过去 30 天)
显示 更早的评论
I have a waitbar running ,it doesnot close automatically,now i dontwant that waitbar to run,can u tell how to process please
0 个评论
采纳的回答
Walter Roberson
2011-11-1
If you have a waitbar that you are finished with, close() its handle. The handle can be returned when you first create the waitbar:
h = waitbar(x,'message');
then you would close(h) when you are done with it.
1 个评论
Royi Avital
2014-9-25
I think you should delete it instead of closing it as suggested in:
更多回答(1 个)
Bjorn Gustavsson
2011-11-1
If you don't want it to run period, just edit the function that creates it and comment out all instances of waitbar. If you want to fancify it make the waitbar optional.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dialog Boxes 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!