How to check how long implementation time took
조회 수: 4 (최근 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!