Trait probability::distribution::Distribution[][src]

pub trait Distribution {
    type Value;
    fn distribution(&self, _: f64) -> f64;
}

A distribution.

Associated Types

The type of outcomes.

Required Methods

Compute the cumulative distribution function.

Implementors