Trait probability::distribution::Median[][src]

pub trait Median: Distribution {
    fn median(&self) -> f64;
}

A distribution capable of computing the median.

The trait is applicable when exactly one median exists.

Required Methods

Compute the median.

Implementors