tic/toc versus time.perf_counter_ns()

조회 수: 5 (최근 30일)
Mark Holmes
Mark Holmes 2022년 6월 8일
답변: Peter Perkins 2022년 6월 13일
For tic/toc the documentation indicates that these are limited to codes that take at least 1/10 second (if you want an accurate value). In python, the commands time.perf_counter_ns() and time.perf_counter() appear to have no such limitation. Is there a timer command for MATLAB without the 0.1 second rule?

답변 (1개)

Peter Perkins
Peter Perkins 2022년 6월 13일
The doc doesn't say you can't use tic/toc to time very short things, and clearly that is not true:
>> tic, x = 1; toc
Elapsed time is 0.000323 seconds.
What the doc does say is that if your total time is less than 0.1s, then you probably want to put whatever you are timing in a loop, and divide the total time by the number of iterations, otherwise your results are likely to be contaminated by noise. The timeit function is your friend.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by