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

  1. #ifndef __PAN_TOMPKINS__
  2. #define __PAN_TOMPKINS__
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <stdbool.h>
  7. #include <math.h>
  8. #include "QRS.h"
  9. extern int TwoPoleRecursive(int);
  10. extern int LowPassFilter(int);
  11. extern int HighPassFilter(int);
  12. extern int Derivative(int);
  13. extern int Squar(int);
  14. extern int MovingWindowIntegral(int);
  15. extern SignalPoint ThresholdCalculate(int,float,int,int,int);
  16. #endif