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:
2:6500ec04a6a1
Parent:
1:d1dac3b2692a

File content as of revision 2:6500ec04a6a1:

#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