Skip to main content

flow_linalg/
lib.rs

1//! faer-based linear algebra primitives for flow cytometry.
2
3#[cfg(feature = "compensation")]
4pub mod compensation;
5
6#[cfg(feature = "compensation")]
7pub use compensation::{
8    SingleStainControl, apply_compensation_inv, compensate_channels, estimate_spillover,
9    invert_spillover, median,
10};