Trait probability::distribution::Inverse[][src]

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

A distribution capable of inverting the distribution function.

Required Methods

Compute the inverse of the cumulative distribution function.

Implementors