https://github.com/mbuesch/movavgrs
Rust: Generic Moving Average calculation
https://github.com/mbuesch/movavgrs
moving-average rust rust-lang
Last synced: about 1 year ago
JSON representation
Rust: Generic Moving Average calculation
- Host: GitHub
- URL: https://github.com/mbuesch/movavgrs
- Owner: mbuesch
- License: apache-2.0
- Created: 2021-03-31T17:27:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-11T20:33:28.000Z (over 1 year ago)
- Last Synced: 2025-04-02T02:31:01.741Z (over 1 year ago)
- Topics: moving-average, rust, rust-lang
- Language: Rust
- Homepage: https://bues.ch/
- Size: 95.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE-APACHE
Awesome Lists containing this project
README
movavg - Generic Moving Average calculation
===========================================
`Project home `_
`Git repository `_
`Github repository `_
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
Example Cargo.toml dependencies
===============================
Add this to your Cargo.toml:
.. code:: toml
[dependencies]
movavg = "2"
Example usage
=============
.. code:: rust
// Integers
let mut avg: MovAvg = MovAvg::new(); // window size = 3
assert_eq!(avg.feed(10), 10);
assert_eq!(avg.feed(20), 15);
assert_eq!(avg.feed(30), 20);
assert_eq!(avg.feed(40), 30);
assert_eq!(avg.get(), 30);
// Floats
let mut avg: MovAvg = MovAvg::new();
assert_eq!(avg.feed(10.0), 10.0);
assert_eq!(avg.feed(20.0), 15.0);
assert_eq!(avg.feed(30.0), 20.0);
assert_eq!(avg.feed(40.0), 30.0);
assert_eq!(avg.get(), 30.0);
// Bigger accumulator
let mut avg: MovAvg = MovAvg::new();
assert_eq!(avg.feed(100), 100);
assert_eq!(avg.feed(100), 100); // This would overflow an i8 accumulator
Cargo Feature selections
========================
no_std
------
If you want to use movavg without the `std` library (often called `no_std`), then use the following Cargo.toml dependency to disable the `std` feature:
.. code:: toml
[dependencies]
movavg = { version = "2", default-features = false }
Currently the `no_std` variant supports all functionality that the default `std` variant supports. But that may change in future.
fastfloat
---------
The `fastfloat` feature can be used to enable much faster, but less accurate floating point calculations. Enabling this feature leads to bigger floating point rounding and cancellation errors.
.. code:: toml
[dependencies]
movavg = { version = "2", features = ["fastfloat"] }
This feature may also be used together with disabled `std` feature (see `no_std`).
Rust compiler version
=====================
Requires Rust compiler version 1.61 or later.
License
=======
Copyright (c) 2021-2023 Michael Büsch
Licensed under the Apache License version 2.0 or the MIT license, at your option.