Project Paint / Mbed 2 deprecated EMG-Processing

Dependencies:   biquadFilter mbed

emg-utils.h

Committer:
ofosakar
Date:
2016-11-02
Revision:
0:44d3f99b08c1

File content as of revision 0:44d3f99b08c1:

void addFirst(float newValue, float array[], int size);
float average(float newValue);
float movingAverage(float newValue);
float sum(float array[], int size);
float mean(float array[], int size);
float meanSquare(float array[], int size);
float variance(float array[], int size, float avg);
float standardDeviation(float array[], int size, float avg);
int decide(float value, float threshold);
float rectifier(float value);
void processEMG();