转自http://blog.sciencenet.cn/blog-412191-599601.html
在运行程序时,我们希望可以实时看到程序的运行进度,尤其是程序需要运行数个小时以上时,这种对进度的把握更为重要。matlab提供了进度条waitbar的功能,可以以GUI的方式来显示,但此方法存在降低程序运行速度的问题,还有待解决。
clear all
clc
tic
h = waitbar(0,'Please wait...');
x=-100:0.1:100;
steps = 10000;
for step=1:steps
% computations take place here
y=sin(x)+rand(1,length(x));
f=fft(y);
per=step/steps;
waitbar(per,h,sprintf('%2.0f%%',per*100))
end
close(h)
toc