필터 지우기
필터 지우기

Time consumed by a function in a code

조회 수: 1 (최근 30일)
Rashi Mehrotra
Rashi Mehrotra 2020년 8월 17일
댓글: Rashi Mehrotra 2020년 8월 17일
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.

답변 (1개)

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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by