pub trait Variance {
    type Result;

    // Required method
    fn variance(self) -> Self::Result;
}
Available on crate feature statistics only.
Expand description

Statistical variance

Required Associated Types§

source

type Result

Result type

Required Methods§

source

fn variance(self) -> Self::Result

Compute the statistical variance

Implementations on Foreign Types§

source§

impl<T> Variance for &[T]where T: Copy + Into<f32>,

§

type Result = f32

Result type

source§

fn variance(self) -> f32

Implementors§