MATLAB: Hi,,is there any command which will show the time that MATLAB has used to execute the whole program? TIA

time

how do I find the time required to get the program done?

Best Answer

tic;
callYourFunction;
toc
And if graphics are created, insert a drawnow before the toc.