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

fn inverse(&self, f64) -> Self::Value

Compute the inverse of the cumulative distribution function.

Implementors