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

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

A distribution.

Associated Types

type Value

The type of outcomes.

Required Methods

fn distribution(&self, f64) -> f64

Compute the cumulative distribution function.

Implementors