A utility library to calculate mean and standard deviation with online algorithms.
Rationale
This library provides ways to calculate the mean and the standard deviation of a potentially limitless stream of numbers with practically no memory consumption.
Examples
use MeanSD;
let mut meansd = default;
meansd.update;
meansd.update;
meansd.update;
assert_eq!;
assert_eq!;
assert_eq!;