varpro 0.14.0

A straightforward nonlinear least-squares fitting library which uses the Variable Projection algorithm.
Documentation
1
2
3
4
5
6
7
8
/// Contains solvers using the [levenberg-marquardt](https://crates.io/crates/levenberg-marquardt)
/// crate.
///
/// This module provides implementations of optimization algorithms for solving the
/// nonlinear least squares problem in variable projection. Currently, it contains
/// the [`levmar`] module which implements the Levenberg-Marquardt algorithm
/// with multiple linear solver backends (SVD and column-pivoted QR decomposition).
pub mod levmar;