baselines 0.1.0

Baseline correction algorithms for signals, spectra, and images
Documentation
1
2
3
4
5
6
7
8
9
//! Dense linear algebra helpers backed by `faer`.

/// Marker for the optional faer backend.
///
/// The current public algorithms use small in-crate solvers for portability;
/// this module keeps the feature boundary explicit for later reference solves
/// and larger dense systems.
#[derive(Debug, Clone, Copy, Default)]
pub struct FaerDenseBackend;