[go: up one dir, main page]

statrs 0.6.0

Statistical computing library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Provides a host of special statistical functions (e.g. the beta function or the error function)

pub mod beta;
pub mod erf;
pub mod evaluate;
pub mod exponential;
pub mod factorial;
pub mod gamma;
pub mod harmonic;
pub mod logistic;
pub mod stable;

mod internal;