statrs/function/
mod.rs

1//! Provides a host of special statistical functions (e.g. the beta function or
2//! the error function)
3
4pub mod beta;
5pub mod erf;
6pub mod evaluate;
7pub mod exponential;
8pub mod factorial;
9pub mod gamma;
10pub mod harmonic;
11pub mod logistic;