peak detection

Dependents:   mbed-test-i2c-PCA-biquad-peakdet Mix-code-v2 mbed-os-step-counting the-lastest-code

peak.h

Committer:
castlefei
Date:
2019-11-25
Revision:
1:d1dac3b2692a
Parent:
0:59ce24b43be2

File content as of revision 1:d1dac3b2692a:

#ifndef PEAK_H
#define PEAK_H

#include <vector>  
using namespace std;


class PEAK {
public:
    int findPeaks(vector<float> num,int count, float &threshold);
    
    
};





#endif //PEAK_H