How to print the time of a function in MATLAB
example:
%%%TAKE TIME
A = [2 1 3 ; 1 2 5 ;3 5 4 ]
[U,S,V] = svd(A)
%%%FINISH TIME
whats the syntax?
|
How to print the time of a function in MATLAB example:
whats the syntax? |
||||
|
|
|
you can also use the nonsingleton forms of tic and toc:
This allows the use of more than one timer. (otherwise you have to ensure exclusive use of |
|||
|
|