Time consumed by a function in a code

2 visualizaciones (últimos 30 días)
Rashi Mehrotra
Rashi Mehrotra el 17 de Ag. de 2020
Comentada: Rashi Mehrotra el 17 de Ag. de 2020
I have made an equivalent function of variable fractional delay and running it with a for loop and with the other functions like xcorr in the code. I have to find the time taken by the code in executing the equivalent function only and not the xcorr function. I have used tic toc, but it gives the time for the whole code.

Respuestas (1)

KSSV
KSSV el 17 de Ag. de 2020
Read about profiler. You can use tic toc.
t1 = tic ;
val = myfunction(inputs) ;
t1 = toc(t1) ;
  4 comentarios
Rashi Mehrotra
Rashi Mehrotra el 17 de Ag. de 2020
there are two loops with vfd function and the time is growing as I am increasing the loop
Rashi Mehrotra
Rashi Mehrotra el 17 de Ag. de 2020
This gives an error TOC must be a uint64 scalar. Please resolve.

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by