MATLAB: Execution Time

time stamp

how to find the execution time of a matlab program.

Best Answer

execution time can be found by tic-toc command.place tic; before the first line of code and toc; after the last line of the code
e.g.
tic;
MATLAB code
toc;
Related Question