dd

Dependencies:   xtoff2 RF24Network mbed

Fork of xtoff3 by pieter Berteloot

Maths.h

Committer:
gimohd
Date:
2018-09-05
Revision:
16:691649d8a3da

File content as of revision 16:691649d8a3da:

#ifndef Maths_h
#define Maths_h

class Maths
{
private:


public:
    static int comp(const void* elem1, const void* elem2);
    static float mean(float *samples, int n, int n2);
    static float median(float *samples, int n);
    static float stdev(float * samples, int n); 
    static float meanNoOutliers(float data[] , int n);  
        
};

#endif