[][src]Trait micromath::statistics::Mean

pub trait Mean {
    type Result;
    fn mean(self) -> Self::Result;
}

Arithmetic mean

Associated Types

type Result

Result type

Loading content...

Required methods

fn mean(self) -> Self::Result

Compute the arithmetic mean

Loading content...

Implementors

impl<I> Mean for I where
    I: Iterator<Item = f32>, 
[src]

type Result = f32

Loading content...