(translator=Young, ChineseSource=Young-20020410-4.67\tic.html, EnglishSource=c:\matlabr12\help\techdoc\ref\tic.html)
MATLAB Function Reference |
|
tic, toc
碼錶
Syntax
tic
any statements
toc
t = toc
Description
tic
開始計時。
toc
印出從 tic
到現在經過的時間。
t = toc
將經過的時間存在 t
。
Examples
下面的例子測量解不同維度矩陣的線性系統需要多少時間。
for n = 1:100
A = rand(n,n);
b = rand(n,1);
tic
x = A\b;
t(n) = toc;
end
plot(t)
See Also
clock
, cputime
, etime
| textwrap | | title | |