概述
1.用 profile函数 测试MATLAB中运行时间
例子:
profile on
plot(magic(35))
profile viewer
profsave(profile('info'),'profile_results')
profile on -history
plot(magic(4));
p = profile('info');
for n = 1:size(p.FunctionHistory,2)
if p.FunctionHistory(1,n)==0
str = 'entering function: ';
else
str = ' exiting function: ';
end
disp([str p.FunctionTable(p.FunctionHistory(2,n)).FunctionName]);
end
2. tic,toc
tic
operation
toc
3. cputime
t=cputime;
your_operation
cputime-t
4. clock,etime
t0 = clock;
operation
etime(clock,t0)
本文来自: 高校自动化网(Www.zdh1909.com) 详细出处参考(转载请保留本链接):http://www.zdh1909.com/html/matlab/9501.html
最后
以上就是拉长手套为你收集整理的matlb中计算时间的一些命令的全部内容,希望文章能够帮你解决matlb中计算时间的一些命令所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复