This crate provides a simple moving average filter for floating-point types.
This crate can be used through cargo by
adding it as a dependency in Cargo.toml
:
[dependencies]
moving_avg = "0.1.0"
and importing it in the crate root:
extern crate moving_avg;