This structure stores the direct and recursive REAL8 filter coefficients, as well as the history of the auxiliary sequence \(w\).
The length of the history vector gives the order of the filter
Definition at line 168 of file IIRFilter.h.
Data Fields | |
const CHAR * | name |
User assigned name. More... | |
REAL8 | deltaT |
Sampling time interval of the filter; If \(\leq0\), it will be ignored (ie it will be taken from the data stream). More... | |
REAL8Vector * | directCoef |
The direct filter coefficients. More... | |
REAL8Vector * | recursCoef |
The recursive filter coefficients. More... | |
REAL8Vector * | history |
The previous values of w. More... | |
const CHAR* REAL8IIRFilter::name |
User assigned name.
Definition at line 169 of file IIRFilter.h.
REAL8 REAL8IIRFilter::deltaT |
Sampling time interval of the filter; If \(\leq0\), it will be ignored (ie it will be taken from the data stream).
Definition at line 170 of file IIRFilter.h.
REAL8Vector* REAL8IIRFilter::directCoef |
The direct filter coefficients.
Definition at line 171 of file IIRFilter.h.
REAL8Vector* REAL8IIRFilter::recursCoef |
The recursive filter coefficients.
Definition at line 172 of file IIRFilter.h.
REAL8Vector* REAL8IIRFilter::history |
The previous values of w.
Definition at line 173 of file IIRFilter.h.