baselines 0.1.0

Baseline correction algorithms for signals, spectra, and images
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Ergonomic method-chain API.
//!
//! The builders in this module are thin wrappers over the family modules. See
//! the underlying algorithm functions for detailed references and numerical
//! notes.

#![allow(missing_docs)]
#![allow(clippy::double_must_use)]

mod one_d;
mod two_d;

pub use one_d::{Baseline, CollabPlsBuilder};
pub use two_d::{Baseline2D, CollabPls2DBuilder};