peroxide 0.43.0

Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with familiar syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Probability distributions, random sampling, and statistical operations
//!
//! * Basic statistical tools - `stat.rs`
//! * Popular distributions - `dist.rs` (`rand` feature)
//! * Simple Random Number Generator - `rand.rs` (`rand` feature)
//! * Basic probabilistic operations - `ops.rs`

#[cfg(feature = "rand")]
pub mod dist;
pub mod ops;
#[cfg(feature = "rand")]
pub mod rand;
pub mod stat;