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

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

A distribution capable of inverting the distribution function.

Required Methods

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

Compute the inverse of the distribution function.

Implementors