Expand description
§Moving Average
Generic Moving Average calculation for the integer types
- i8, i16, i32, i64, i128, isize
- u8, u16, u32, u64, u128, usize
and float types
- f32, f64
§Cargo Features
std- If the cargo featurestdis given, then all features that depend on thestdlibrary are enabled. This feature is enabled by default. Usedefault-features = falsein yourCargo.tomlto disable this feature. This crate is independent of thestdlibrary, if this feature is disabled.
Structs§
- MovAvg
- Simple Moving Average (SMA)
Traits§
- MovAvg
Accu - Internal accumulator calculation trait for integers and floats.