17 releases (breaking)

0.13.1 Sep 2, 2023
0.13.0 Jan 27, 2023
0.12.0 Feb 4, 2022
0.11.1 Nov 12, 2021
0.4.0 Mar 8, 2020

#115 in Algorithms

Download history 439/week @ 2023-12-15 75/week @ 2023-12-22 176/week @ 2023-12-29 547/week @ 2024-01-05 646/week @ 2024-01-12 505/week @ 2024-01-19 656/week @ 2024-01-26 618/week @ 2024-02-02 782/week @ 2024-02-09 771/week @ 2024-02-16 758/week @ 2024-02-23 773/week @ 2024-03-01 572/week @ 2024-03-08 637/week @ 2024-03-15 767/week @ 2024-03-22 730/week @ 2024-03-29

2,855 downloads per month
Used in 3 crates

MIT license

180KB
4K SLoC

levenberg-marquardt

Discord Crates.io MIT/Apache docs.rs LoC ci

Solver for nonlinear least squares problems

The implementation is a port of the classic MINPACK implementation of the Levenberg-Marquardt (LM) algorithm. This version of the algorithm is sometimes referred to as exact LM.

All current unit tests indicate that we achieved identical output (on a floating-point level) to the MINPACK implementation, especially for rank deficient unstable problems. This was mainly useful for testing. The Fortran algorithm was extended with NaN and inf handling, similar to what lmfit does.

The crate offers a feature called minpack-compat which sets floating-point constants to the ones used by MINPACK and removes the termination criterion of "zero residuals". This is necessary for identical output to MINPACK but generally not recommended.

Usage

See the docs for detailed information.

impl LeastSquaresProblem<f64> for Problem {
    // define this trait for the problem you want to solve
}
let problem = Problem::new(initial_params);
let (problem, report) = LevenbergMarquardt::new().minimize(problem);
assert!(report.termination.was_successful());

References

Software:

  • The MINPACK Fortran implementation.
  • A C version/update, lmfit.
  • A Python implementation in pwkit.

One original reference for the algorithm seems to be

Moré J.J. (1978) The Levenberg-Marquardt algorithm: Implementation and theory. In: Watson G.A. (eds) Numerical Analysis. Lecture Notes in Mathematics, vol 630. Springer, Berlin, Heidelberg.

by one of the authors of MINPACK.

The algorithm is also described in the form as implemented by this crate in the book "Numerical Optimization" by Nocedal and Wright, chapters 4 and 10.

Dependencies

~3MB
~66K SLoC