-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatistic.h
51 lines (44 loc) · 1009 Bytes
/
Statistic.h
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
#ifndef Statistic_h
#define Statistic_h
//
// FILE: Statistic.h
// AUTHOR: Rob dot Tillaart at gmail dot com
// modified at 0.3 by Gil Ross at physics dot org
// PURPOSE: Recursive Statistical library for Arduino
// HISTORY: See Statistic.cpp
//
// Released to the public domain
//
// the standard deviation increases the lib (<100 bytes)
// it can be in/excluded by un/commenting next line
#define STAT_USE_STDEV
#include <math.h>
#define STATISTIC_LIB_VERSION "0.3.2"
class Statistic
{
public:
Statistic();
void clear();
void add(float);
unsigned long count();
float sum();
float average();
float minimum();
float maximum();
#ifdef STAT_USE_STDEV
float variance();
float pop_stdev(); // population stdev
float unbiased_stdev();
#endif
protected:
unsigned long _cnt;
float _store; // store to minimise computation
float _sum;
float _min;
float _max;
#ifdef STAT_USE_STDEV
float _ssqdif; // sum of squares difference
#endif
};
#endif
// END OF FILE