Computational times for various routines?
Afficher commentaires plus anciens
I am solving a "stochatic" optimization problem using fminunc/fmincon. I'm currently using a fairly simple construction, but am slowly adding layers of complexity (additional time periods, variables, dynamics, etc.). Not surprisingly each addition slows the algorithm down considerably.
Is there a way to see (e.g. for each iteration the computational time spent on 'factorKKTmatrix') how much time each subroutine is taking to compute? I have a feeling my bottle neck is the finite-difference approach to computing the gradient/hessian, but I'd like to make sure this is the case.
Thanks
Réponses (2)
Azzi Abdelmalek
le 22 Août 2013
1 vote
You can use tic toc
2 commentaires
Pete
le 22 Août 2013
Azzi Abdelmalek
le 22 Août 2013
In each part of your code use for example
tic
% part1
t1=toc
tic
%part2
t2=toc
Kelly Kearney
le 22 Août 2013
Try the Profiler.
doc profile
Catégories
En savoir plus sur Get Started with Optimization Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!