Time to run programming
显示 更早的评论
Is there a way to insert code to determine the length of time MATLAB takes to process sections of coding? For example the time it takes to run thru a loop.
回答(3 个)
Azzi Abdelmalek
2013-10-21
Use
tic
%your code
toc
sixwwwwww
2013-10-21
Yes you can use
tic
your code...
toc
Image Analyst
2013-10-21
编辑:Image Analyst
2013-10-21
You can use tic and toc
tic;
% code
toc;
or you can use the new timeit() function:
Or you can push the "Run and Time" button on the toolbar.
类别
在 帮助中心 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!