[][src]Trait micromath::statistics::Variance

pub trait Variance {
    type Result;
    fn variance(self) -> Self::Result;
}

Statistical variance

Associated Types

type Result

Result type

Loading content...

Required methods

fn variance(self) -> Self::Result

Compute the statistical variance

Loading content...

Implementors

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

type Result = f32

Result type

Loading content...