RobTillaart / RunningMedian

Arduino library to determine the running median by means of a circular buffer.
MIT License
46 stars 9 forks source link

Add files via upload #3

Closed ghost closed 4 years ago

ghost commented 4 years ago

5% quantile example

RobTillaart commented 4 years ago

OK straightforward, Can you update the header of the example to match reality?

RobTillaart commented 4 years ago

I notice that


 float RunningMedian::getQuantile(float q) ```

does not check the range of q (between 0 and 1)

Should be fixed too I guess to prevent "strange" results
ghost commented 4 years ago

Done that

RobTillaart commented 4 years ago

Thanks, looking good