Count time while a program is running
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello, i would like to know if there is any function that counts the time that a program spends while he is running. I'm doing some exercises and it would be useful for me to check how much time the program spends.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 14 Dez. 2012
Bearbeitet: Image Analyst
am 14 Dez. 2012
Try tic and toc in your code,
tic;
% Some code....
toc;
or else try the profiling code on the pulldown menu.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!