2 unstable releases

new 0.2.0 Oct 14, 2024
0.1.0 Sep 12, 2024

#421 in Embedded development

Download history 78/week @ 2024-09-06 128/week @ 2024-09-13 28/week @ 2024-09-20 9/week @ 2024-09-27 2/week @ 2024-10-04 165/week @ 2024-10-11

207 downloads per month

MIT license

9KB
93 lines

ci

moving median

A simple no-std moving median filter implementation with a fixed-size buffer. The buffer is used to store the last N measurements, where N is the size of the buffer. The median is calculated by sorting the values in the buffer and taking the middle value. If the number of values is even, the median is the average of the two middle values. If the number of values is odd, the median is the middle value.

This implementation supports both f32 and f64 types.

Example

use moving_median::MovingMedian;

let mut filter_f32 = MovingMedian::<f32, 3>::new();
filter_f32.add_value(42.0);
filter_f32.add_value(43.0);
filter_f32.add_value(41.0);

assert_eq!(filter_f32.median(), 42.0);

let mut filter_f64 = MovingMedian::<f64, 3>::new();
filter_f64.add_value(42.0);
filter_f64.add_value(43.0);
filter_f64.add_value(41.0);

assert_eq!(filter_f64.median(), 42.0);

No runtime deps