How to compute execution time?

1 次查看(过去 30 天)
Nisreen Sulayman
Nisreen Sulayman 2015-7-28
I am executing a MatLab program. I used tic-toc to compute execution time. BUT each time I got a different time? Why?

回答(2 个)

Muthu Annamalai
Muthu Annamalai 2015-7-28
Have you tried,
  1. >>doc timeit
  2. >>doc profile
Using timeit is easy but your script has to be in a function form. Using profile can be done as,
profile on
%your code
profile off
profile info
  1 个评论
Nisreen Sulayman
Nisreen Sulayman 2015-7-28
编辑:Nisreen Sulayman 2015-7-28
I have got this:
ClockSpeed: 2528000000.00
What does that mean? How much time??

请先登录,再进行评论。


Image Analyst
Image Analyst 2015-7-29
Why shouldn't it? You computer is a multitasking machine. Sometimes it puts your program on hold to take care of other tasks. The number of other tasks that are going on at any given time can vary both in number and priority so the amount of time it has to pause your program varies. Hence the different times.

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by