[][src]Trait micromath::statistics::StdDev

pub trait StdDev {
    type Result;
    fn stddev(self) -> Self::Result;
}

Compute standard deviation

Associated Types

type Result

Result type

Loading content...

Required methods

fn stddev(self) -> Self::Result

Compute standard deviation

Loading content...

Implementors

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

type Result = f32

Result type

Loading content...