pub trait Inverse: Distribution {
// Required method
fn inverse(&self, p: f64) -> Self::Value;
}
Expand description
A distribution capable of inverting the distribution function.
pub trait Inverse: Distribution {
// Required method
fn inverse(&self, p: f64) -> Self::Value;
}
A distribution capable of inverting the distribution function.