Code running time calculation
Mostrar comentarios más antiguos
i have coded an algorithm in MATLAB, i want to calculate the processing time of that code.
means the time in which input is given and out put is produced. is there any method or process or code that calculate processing time time???
Respuestas (1)
Mischa Kim
el 9 de Mzo. de 2014
Editada: Mischa Kim
el 9 de Mzo. de 2014
Alina, use tic at the beginning, and toc at the end of the part of the code you want to measure execution time of. E.g.,
tic
pause(3)
toc
4 comentarios
Alina
el 9 de Mzo. de 2014
rasool alturfi
el 6 de En. de 2017
is thers any similar method to calculate execution time in simulation? thanks...
Tawanda Michael Guveya
el 28 de Oct. de 2019
how then can you assign the value to a variable.
SUMAN MAITI
el 28 de Nov. de 2019
Each time it gives different time!
Categorías
Más información sobre MATLAB Coder en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!