pub trait Inverse: Distribution {
    fn inverse(&self, p: f64) -> Self::Value;
}
Expand description

A distribution capable of inverting the distribution function.

Required Methods

Compute the inverse of the cumulative distribution function.

Implementors