You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
425 B
21 lines
425 B
#ifndef __PAN_TOMPKINS__
|
|
#define __PAN_TOMPKINS__
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include <math.h>
|
|
|
|
#include "QRS.h"
|
|
extern int TwoPoleRecursive(int);
|
|
|
|
extern int LowPassFilter(int);
|
|
extern int HighPassFilter(int);
|
|
|
|
extern int Derivative(int);
|
|
extern int Squar(int);
|
|
extern int MovingWindowIntegral(int);
|
|
|
|
extern SignalPoint ThresholdCalculate(int,float,int,int,int);
|
|
#endif
|