scirs2_optimize/least_squares/
mod.rs1pub mod bounded;
4pub mod main;
5pub mod robust;
6pub mod separable;
7pub mod sparse;
8pub mod total;
9pub mod weighted;
10
11pub use main::{least_squares, Method, Options};
13
14pub use robust::{
16 robust_least_squares, BisquareLoss, CauchyLoss, HuberLoss, RobustLoss, RobustOptions,
17};
18
19pub use weighted::{weighted_least_squares, WeightedOptions};
21
22pub use bounded::{bounded_least_squares, BoundedOptions};
24
25pub use separable::{separable_least_squares, LinearSolver, SeparableOptions, SeparableResult};
27
28pub use total::{
30 total_least_squares, TLSMethod, TotalLeastSquaresOptions, TotalLeastSquaresResult,
31};
32
33pub use sparse::{
35 lsqr, sparse_least_squares, SparseInfo, SparseMatrix, SparseOptions, SparseResult,
36};