Why is there a time difference in tic toc in multiple runs
1 次查看(过去 30 天)
显示 更早的评论
In the following code, the execution time returned by tic toc varies in each run. Why?
tic ones(50) toc
0 个评论
回答(1 个)
Rick Rosson
2016-2-2
Because tic toc measures elapsed time rather than cpu time. Try using profile instead.
3 个评论
Steven Lord
2016-2-2
What if during one iteration your computer "phones home" looking for updates but during another it doesn't?
What if instead it's your virus scanner that is checking for updates?
What if during one iteration tic "starts timing" exactly at the start of one clock tick and ends at the end of that same tick, but during another it starts in the middle of one tick and ends in the middle of another?
The times returned should be very similar but they're not going to be identical unless everything about your system is exactly the same. If you had a VM, saved its state, and restored back to that state that would probably be about as close as you could get to that scenario.
Walter Roberson
2016-2-2
What if your computer has to get busy popping up Clippy to remind you that you have not saved a document?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Performance and Memory 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!