How to calculate compilation time for a code in seconds? tic-toc command gives time in machine cycles. Is there any way?
No products are associated with this question.
Would using the profiler help?
http://www.mathworks.com/help/techdoc/matlab_env/f9-17018.html
http://www.mathworks.com/help/techdoc/ref/toc.html
toc stops a stopwatch timer started by the tic function, and displays the time elapsed in seconds.
So tic/toc already uses seconds, not machine cycles.
0 Comments