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

1 次查看(过去 30 天)
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 个评论

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by