How to check how long implementation time took
3 次查看(过去 30 天)
显示 更早的评论
Is there a way in `matlab` (i.e; function) to check how long your program took to finish running?
Thanks.
0 个评论
回答(1 个)
Image Analyst
2013-3-21
How about tic and toc?
tic;
% Run some code...
toc
Or there's the Run and Time function on the tool ribbon.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!