[][src]Trait rustats::distributions::Pdf

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

Required methods

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

Loading content...

Implementors

impl Pdf<MaybeUniform<f64>> for StandardNormal[src]

impl Pdf<f64> for StandardNormal[src]

impl Pdf<(f64, f64)> for StandardNormal[src]

impl<'a, K> Pdf<(f64, f64, f64)> for BayesianPosterior<'a, (f64, f64), K> where
    K: Pdf<(f64, f64)>, 
[src]

impl<'a, K> Pdf<Matrix2> for BayesianPosterior<'a, (f64, f64), K> where
    K: Pdf<(f64, f64)>, 
[src]

impl<D> Pdf<f64> for FixY<D> where
    D: Pdf<(f64, f64)>, 
[src]

impl<P, Q, S, K> Pdf<Q> for KernelDensityEstimator<P, S, K> where
    P: Point,
    Q: Point<Bandwidth = P::Bandwidth>,
    S: SelectBandwidth<P>,
    K: Kernel<Q, P>, 
[src]

Loading content...