[][src]Trait rustats::distributions::Cdf

pub trait Cdf<T> {
    fn cdf(&self, x: &T) -> f64;
}

Cumulative distribution function.

Required methods

fn cdf(&self, x: &T) -> f64

Returns the CDF of the given item.

Loading content...

Implementors

impl Cdf<f64> for StandardNormal[src]

Loading content...