Trait Variance

Source
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>,

Source§

type Result = f32

Result type

Source§

fn variance(self) -> f32

Implementors§