[][src]Function super_mass::stats::rolling_std

pub fn rolling_std<T: Into<f64> + Add<f64> + Copy>(
    values: &[T],
    window_size: usize
) -> RollingStd<'_, T>

Notable traits for RollingStd<'a, T>

impl<'a, T: Into<f64> + Copy> Iterator for RollingStd<'a, T> type Item = f64;

compute the moving mean in $$O(n)$$ time.