MATLAB: Stopwatch

timer

I'm using the function tic and toc to measure the duration of an evaluation and I get 1.425484891851347e+03 as my value.
How do I interpret it?

Best Answer

If you get little confused with that value,
Then you can replace command 'toc' with
fprintf('Total time : %.2f second\n',toc);