|
I've been poking around the .m files for the Optimization Toolbox,
and I'm wondering.... is fmincon actually implemented anywhere in
.m code, or does it, after parameter checking, call into a routine
coded in C, Fortran or assembler?
Seems like (for the interior point method), it finally calls
"barrier", which I can't find.
I'm concerned that if it's in .m code, it might not be fast
enough for some large problems I want to solve. (Yes, I'm getting
a framework and samples together to actually test this).
In that vein, does anyone here have experience with Numerical
Analysis Group's (NAG) MATLAB extensions. I've been very happy
using NAG products in the past, maybe this would be a better
fit for me (my problem isn't general non-linear constrained
optimization, it's quadratic objective, linear constraints,
structured hessian, which quadprog won't solve efficiently
because I can't use large-scale). I know one the NAG functions for
quadratics does what I want, since I used it before (directly from
C++, not MATLAB), at a previous job
|