GPLIB++
AdaptiveFilter.cpp
Go to the documentation of this file.
1 #include "AdaptiveFilter.h"
2 
3 namespace gplib
4  {
5 
6  AdaptiveFilter::AdaptiveFilter(const int inputsize, const int outputsize) :
7  FilterOutput(outputsize), Epsilon(outputsize), inputlength(inputsize),
8  outputlength(outputsize)
9  {
10  }
12  {
13  }
14  }
AdaptiveFilter(const int inputsize, const int outputsize)
The constructor needs to know the length of the input and output vectors for memory allocation...