This is the mail archive of the
gsl-discuss@sources.redhat.com
mailing list for the GSL project.
Re: multifit/Levenberg-Marquardt
Sanjay Bhatnagar writes:
> That's not the point. The point I was trying to make was that GSL
> implementation is inefficient (from the mem. usage point of view) for
> large data sets.
GSL uses the MINPACK algorithms LMDER and LMSDER, both of which
require O(NxP) storage. The reduced memory O(N+P) version is LMSTR in
the original MINPACK if you would like to implement it.
--
Brian