How to check which function is the slowest one?

8 views (last 30 days)
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?

Answers (3)

Stephen23
Stephen23 on 21 Jun 2016
Edited: Stephen23 on 21 Jun 2016

John D'Errico
John D'Errico on 21 Jun 2016
Use the profile tool to identify bottlenecks.
help profile

Shameer Parmar
Shameer Parmar on 21 Jun 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

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!