Defines the parameters used by the moving average filter.
|
|
float | avg |
| | Mean observed in samples.
|
| |
|
bool | stable |
| | If data is complete for moving average computation this value will be true else false
|
| |
|
float * | dataPtr |
| | Pointer to the data array.
|
| |
|
int | count |
| | No of samples per computation.
|
| |
|
int | index |
| | Initialize to zero. Used internally for detecting current data position.
|
| |