nexus-stats 3.0.0

Fixed-memory, zero-allocation streaming statistics for real-time systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core streaming statistics.

mod welford;
mod moments;
mod ewma_var;
mod covariance;
mod harmonic_mean;
mod percentile;

pub use welford::*;
pub use moments::*;
pub use ewma_var::*;
pub use covariance::*;
pub use harmonic_mean::*;
pub use percentile::*;