필터 지우기
필터 지우기

Tic toc without output

조회 수: 15 (최근 30일)
Barbaros Teoman Kosoglu
Barbaros Teoman Kosoglu 2022년 10월 13일
답변: John D'Errico 2022년 10월 13일
I want to use tic toc to calculate time. But when the matrix is getting bigger the command window becomes unreadable. So is there a way to use tic toc without outputting the function.
calcDimTime(50)
calcDimTime(100)
calcDimTime(200)
calcDimTime(400)
function calcDimTime(n)
A = hilb(n);
tic
inv(A)
t = toc;
sprintf("The dimension of a is %f %f, and " + ...
"the time to calculate the inverse of A " + ...
"is %f",size(A),t)
end

채택된 답변

Image Analyst
Image Analyst 2022년 10월 13일
Add a semicolon at the end of the line:
inv(A);

추가 답변 (1개)

John D'Errico
John D'Errico 2022년 10월 13일
First, using tic and toc are bad ways to compute the time to do something. Why? They compute only ellapsed time, and even then, only poorly so. They compute the time for only one run of the code. Better to average things. Better to discard the first couple of times you call a code. Why? There is a warm-up needed, to get the true time. The first time you call a code, you also see the time needed to cache it, etc.
And of course, you need to make sure you are doing nothing else at the same time. Don't go surf the we, etc. That sucks time away from your CPU. Even in my case, I'm running MATLAB flat out right now to do a computation, one that is uusing one core of my CPU full time. So while I have an 8 core CPU, I can see if I start doing something one the side, as I am monitoring the time needed while it truns.
Anyway, MATLAB provides the timeit utility. USE IT!
If your problem is dumping crap in the command window, use semi-colons! All of this is avoided using timeit. So, we can do this:
N = 1000000;
tic,
p = primes(N);
toc
Elapsed time is 0.017321 seconds.
tic,
p = primes(N);
toc
Elapsed time is 0.006181 seconds.
tic,
p = primes(N);
toc
Elapsed time is 0.005911 seconds.
Or, this:
timeit(@() primes(N))
ans = 0.0033
The latter is going to be far more consistent. Do you see the significant variance in times reported from tic and toc?

카테고리

Help CenterFile Exchange에서 Performance and Memory에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by