-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMovingAverage.cpp
60 lines (53 loc) · 1.8 KB
/
MovingAverage.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* MovingAverage.cpp
*
* An exponential moving average class for Arduino/Wiring.
*
* (c) 2011-2015 Sofian Audry -- info(@)sofianaudry(.)com
* Adapted from the Qualia library: https://github.com/sofian/qualia
* Inspired by code by Karsten Kutza
* http://www.ip-atlas.com/pub/nap/nn-src/bpn.txt
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include "MovingAverage.h"
MovingAverage::MovingAverage(float alphaOrN, real startValue) : _value(startValue) {
alphaOrN = max(alphaOrN, 0); // make sure alphaOrN >= 0
_alpha = (alphaOrN > 1 ?
2 / (alphaOrN + 1) :
alphaOrN);
}
void MovingAverage::reset(real startValue) {
_value = startValue;
}
void MovingAverage::reset(real (*valueFunc)(void))
{
// Source: http://www.had2know.com/finance/exponential-moving-average-ema-calculator.html
// a = 2/(n+1) ==> n = 2/a - 1 ==> (n-1) / 2 = 1/a - 1
int n = ceil( 1.0f/_alpha - 1);
Serial.print("N: "); Serial.println(n);
real avg = 0;
for (int i=0; i<n; i++)
avg += valueFunc();
avg /= n;
reset(avg);
}
MovingAverage::real MovingAverage::update(real v) {
return (_value -= _alpha * (_value - v));
}