Why calculated elapsed time of function 'ar' is different with function 'tic toc' and 'timeit'?

2 views (last 30 days)
I want to compare computation complexity of Yule-Walker Method and other algorithm.
At firtst, I write the 2 codes below,
1) Calculate elapsed time using 'tic toc' function
tic;
ar(Test_Signal,N,'yw');
toc;
2) Calculate elapsed time using 'timeit' function
ff = @() ar(Test_Signal,N,'yw');
timeit(ff)
and results shows huge difference
1) 0.754736s
2) 0.0060s
Which result is correct? and how can I use this results with metric of computational complexity of algorithm?
  4 Comments

Sign in to comment.

Answers (0)

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!