How to check which function is the slowest one?
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'm trying to figure out which function in my program (designed to solve non-linear equations) is the 'bottle-neck' of the calculation. Any useful suggestions?
0 Commenti
Risposte (3)
Shameer Parmar
il 21 Giu 2016
Simply put..
'tic' and 'toc' commands in each function one by one and check the time..
% starting of function
tic
% your code
% your code
% your code
toc
% end of this function
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!