slatec 0.1.0

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

#[path = "linear/bounded.rs"]
/// Bounded linear least squares.
pub mod bounded;
#[path = "linear/bounded_constrained.rs"]
/// Bounded constrained linear least squares.
pub mod bounded_constrained;
#[path = "linear/constrained.rs"]
/// Constrained linear least squares.
pub mod constrained;
#[path = "linear/nonnegative.rs"]
/// Nonnegative linear least squares.
pub mod nonnegative;