CEBL  2.1
PassBandTest.cpp
Go to the documentation of this file.
1 #include "features/Feature.hpp"
2 #include "PassBandFunctions.hpp"
3 
4 using namespace std;
5 using namespace cppR;
6 
7 /**************************************************/
8 
9 int main()
10 {
11  int Fs = 1024;
12  int low = 20;
13  int high = 30;
14  Matrix B = makePassband(151,8,Fs,low,int((low+high)/2),high);
15  return 0;
16 }