All Projects → RobTillaart → RunningAverage

RobTillaart / RunningAverage

Licence: MIT license
Arduino library to calculate the running average by means of a circular buffer.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to RunningAverage

django-for-runners
Store your GPX tracks of your running (or other sports activity) in django.
Stars: ✭ 49 (+122.73%)
Mutual labels:  running
PopRun
跑鸭:这是我的毕业设计,“跑鸭”微信小程序-一款基于校园跑步的社交小程序(实时里程配速、运动路径、整公里提醒、周榜月榜、打卡分享、热门推荐、线上活动、勋章墙、隐私设置),技术栈:Vant-Weapp UI、Laravel+MySQL
Stars: ✭ 64 (+190.91%)
Mutual labels:  running
RollingFunctions.jl
Roll a window over data; apply a function over the window.
Stars: ✭ 89 (+304.55%)
Mutual labels:  running
everystreet
An algorithm finding #everystreet route on Open Street Map (OSMnx)
Stars: ✭ 43 (+95.45%)
Mutual labels:  running
instance-watcher
Get notified for Instances mistakenly left running across all AWS regions for specific AWS Account
Stars: ✭ 90 (+309.09%)
Mutual labels:  running
Strava-Analysis-Tool
A Python tool to analyze and display Strava activity data.
Stars: ✭ 32 (+45.45%)
Mutual labels:  running
running-on-streetview
Virtual Running on Google Street View.
Stars: ✭ 20 (-9.09%)
Mutual labels:  running
MACHINIST-X99ZV102
C612RD23 BIOS for MACHINIST X99Z V102 Motherboard 07/31/2020
Stars: ✭ 21 (-4.55%)
Mutual labels:  running
exponential-moving-average
Calculate an exponential moving average from an array of numbers.
Stars: ✭ 41 (+86.36%)
Mutual labels:  average
HADailySensor
Sensor for Home Assistant that gets reset at midnight
Stars: ✭ 20 (-9.09%)
Mutual labels:  average

Arduino CI Arduino-lint JSON check License: MIT GitHub release

RunningAverage

Arduino library to calculate the running average by means of a circular buffer.

Description

The RunningAverage object gives a running average of the last N floating point numbers, giving them all equal weight. This is done by adding new data to an internal circular buffer, removing the oldest and replace it by the newest. The size of the internal buffer can be set in the constructor.

By keeping track of the _sum the runningAverage can be calculated fast (only 1 division) at any time. This is done with getFastAverage(). However the constant adding and subtracting when adding new elements possibly introduces an ever increasing error. In tests adding up to 1500000 numbers this error was always small. But that is no proof. In version 0.2.16 a fix was added that uses the calculation of the sum in getAverage() to update the internal _sum.

Interface

Constructor

  • RunningAverage(uint16_t size) allocates dynamic memory, one float (4 bytes) per element. No default size (yet).
  • ~RunningAverage() destructor to free the memory allocated.

Basic

  • void clear() empties the internal buffer.
  • void add(float value) wrapper for addValue()
  • void addValue(float value) adds a new value to the object, if internal buffer is full, the oldest element is removed.
  • void fillValue(float value, uint16_t number) adds number elements of value. Good for initializing the system to z certain starting average.
  • float getValue(uint16_t position) returns the value at position from the additions. Position 0 is the first one to disappear.
  • float getAverage() iterates over all elements to get the average, slower but accurate. Updates the variables used by getFastAverage() to improve its accuracy again.
  • float getFastAverage() reuses previous calculated values, therefore faster. Accuracy can drift.

Extended functions

  • float getStandardDeviation() returns the standard deviation of the current content. Needs more than one element to be calculable.
  • float getStandardError() returns the standard error of the current content.
  • float getMin() returns minimum since last clear, does not need to be in the buffer any more.
  • float getMax() returns maximum since last clear, does not need to be in the buffer any more.
  • float getMinInBuffer() returns minimum in the internal buffer.
  • float getMaxInBuffer() returns maximum in the internal buffer.

Admin functions

  • bool bufferIsFull() returns true if buffer is full.
  • float getElement(uint16_t index) get element directly from internal buffer at index. (debug)
  • uint16_t getSize() returns the size of the internal array.
  • uint16_t getCount() returns the number of slots used of the internal array.

Partial

  • void setPartial(uint16_t partial = 0) use only a part of the internal array. Allows to change the weight and history factor. 0 ==> use all == default.
  • uint16_t getPartial() returns the set value for partial.

Last

These functions get the basic statistics of the last N added elements. Returns NAN if there are no elements and it will reduce count if there are less than count elements in the buffer.

  • float getAverageLast(uint16_t count) get the average of the last count elements.
  • float getMinInBufferLast(uint16_t count) get the minimum of the last count elements.
  • float getMaxInBufferLast(uint16_t count) get the maximum of the last count elements.

These functions are useful in cases where you might want to calculate and display the statistics of a subset of the added elements. Reason might be to compare this with the numbers of the whole buffer to notice changes earlier. Otherwise one should create multiple RunningAverage objects each with its own length, effectively having multiple copies of the data added.

Note: if called with a value larger or equal to getCount() (incl getSize()) as parameter, the functions will return the statistics of the whole buffer.

Subset (experimental)

  • float getAverageSubset(uint16_t start, uint16_t count) Get the average of subset - count elements from start.

Operation

See examples

Future

must

  • update documentation, explain better

should

  • add error handling (important?)
  • check for optimizations.
  • clear(bool zero = true) to suppress setting all to 0. ?

could

  • default size for constructor
  • create a double based derived class? Template class?
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].