README.md
January 27, 2024 ยท View on GitHub
LSMR: Sparse Equations and Least Squares.
This is a slightly modernized version of the original FSMR (f90 version) by David Fong & Michael Saunders, Systems Optimization Laboratory (SOL), Stanford University, Stanford, CA 94305-4026, USA.
Status
Compiling
A Fortran Package Manager manifest file is included, so that the library and test cases can be compiled with FPM. For example:
fpm build --profile release
fpm test --profile release
To use lsmr within your fpm project, add the following to your fpm.toml file:
[dependencies]
LSMR = { git="https://github.com/jacobwilliams/LSMR.git" }
License
The original version of LSMR (f90 version) was provided by SOL, Stanford University under the terms of the OSI Common Public License (CPL) or the BSD License.
Documentation
The latest API documentation can be found here. This was generated from the source code using FORD.
See also
- LSMR: Sparse Equations and Least Squares -- LSMR original code.
- Sparse Parallel Robust Algorithms Library -- another version
- LSQR
- LUSOL
- nlesolver-fortran