Crate mememo

Source
Expand description

§mememo

The crate mememo provides trivial implementations of the operations mean, median, and mode. This crate is not intended for productive use, but only to demonstrate the use of crates and other Rust features.

Re-exports§

pub use Median::MiddleSingle;
pub use Median::MiddleTwoMean;

Enums§

Median

Functions§

mean
Calculates the mean of the elements in the given vector.
median
Calculates the median of the elements in the given vector.
mode
Calculates the mode of the elements in the given vector.