how to calculate the execution time of program?

241 visualizaciones (últimos 30 días)
shrivardhan  suryawanshi
shrivardhan suryawanshi el 25 de Feb. de 2014
Respondida: Steven Lord el 12 de Nov. de 2021
When we get desired output in MATLAB.Then how to calculate execution time in MATLAB...

Respuesta aceptada

Dishant Arora
Dishant Arora el 25 de Feb. de 2014
tic
yourCode
timeElapsed = toc
  6 comentarios
AVINASH PANDEY
AVINASH PANDEY el 12 de Nov. de 2021
thanku for the information. However, if we repeatedly run the code we get different elapsed time each time. Any explanation regarding this will be highly appreciable.
Steven Lord
Steven Lord el 12 de Nov. de 2021
Some minor variation is to be expected. One potential cause of variation is different other processes running at the same time your MATLAB code is running. If you're on Microsoft Windows and Windows Update chooses exactly the time you're running your code to "phone home" for updates that obviously consumes some of the computer's attention, thus potentially making your MATLAB code take longer to run.

Iniciar sesión para comentar.

Más respuestas (3)

Aaron Corbin
Aaron Corbin el 1 de Mzo. de 2014
Editada: Aaron Corbin el 1 de Mzo. de 2014
You could also do the following:
before1=clock code... etime(clock,before1)
It subtracts the time before from the time after.

Laith Mohammed
Laith Mohammed el 16 de Nov. de 2019
First you put tic and entering the code that you are working on it after that toc,
Finaly, create a variable called Elapsed_time = toc
Or, you can just wait and matlab will tell you that elapsed time is (XX seconds)

Steven Lord
Steven Lord el 12 de Nov. de 2021
tic and toc is one way to measure the performance of your code. Other ways include the timeit function and the Profiler.

Categorías

Más información sobre Dates and Time en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by