| |
 |
|
 |
 |
|
 |
Matlab测量时间的方法
|
|
|
方法1: cputime
|
>> help cputime CPUTIME CPU time in seconds. CPUTIME returns the CPU time in seconds that has been used by the MATLAB process since MATLAB started. For example: t=cputime; your_operation; cputime-t returns the cpu time used to run your_operation. The return value may overflow the internal representation and wrap around.
|
方法2: tic and toc
|
>> help tic TIC Start a stopwatch timer. TIC and TOC functions work together to measure elapsed time. TIC saves the current time that TOC uses later to measure the elapsed time. The sequence of commands: TIC operations TOC measures the amount of time MATLAB takes to complete the one or more operations specifed here by "operations" and displays the time in seconds.
|
两种方法各有适用范围,应根据需求而定。
|
|
|
发表于: 2008-05-09,修改于: 2008-05-09 09:18,已浏览455次,有评论0条
推荐
投诉
|
|
 |
|
 |
|  |
|
 |
|