StdDev in micromath::statistics - Rust (original) (raw)

micromath::statistics

Trait StdDev

Source

pub trait StdDev {
    type Result;

    // Required method
    fn stddev(self) -> Self::Result;
}

Available on crate feature statistics only.

Expand description

Compute standard deviation

Required Associated Types§

Source

type Result

Result type

Required Methods§

Source

fn stddev(self) -> Self::Result

Compute standard deviation

Implementations on Foreign Types§

Source§

impl StdDev for &[T]

where T: Copy + Into<f32>,

Source§

type Result = f32

Result type

Source§

fn stddev(self) -> f32

Implementors§