首页 > 其他 > 详细

MATLAB的小小小命令

时间:2018-03-16 21:23:30      阅读:220      评论:0      收藏:0      [点我收藏+]
h = waitbar(x,message)
waitbar(x,message,CreateCancelBtn,button_callback)
waitbar(x,message,property_name,property_value,...)
waitbar(x)
waitbar(x,h)
waitbar(x,h,updated message)

example:
h = waitbar(0,Please wait...);
steps = 1000;
for step = 1:steps
    % computations take place here
    waitbar(step / steps)
end
close(h) 

这是个让等待不会太无聊的小命令。

MATLAB的小小小命令

原文:https://www.cnblogs.com/chri330dj/p/8585196.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!