slatec 0.1.0

Safe Rust interface to selected SLATEC numerical routines
1
2
3
4
5
6
7
8
9
10
//! Nonlinear least-squares fitting.
//!
//! # Status: Implemented with its feature gates.

#[path = "nonlinear/easy.rs"]
/// Easy residual-only fitting.
pub mod easy;
#[path = "nonlinear/expert.rs"]
/// Expert fitting.
pub mod expert;