pub trait Distribution {
    type Value;

    fn distribution(&self, x: f64) -> f64;
}
Expand description

A distribution.

Required Associated Types§

The type of outcomes.

Required Methods§

Compute the cumulative distribution function.

Implementors§