LAL  7.5.0.1-08ee4f4

Detailed Description

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 CHARname
 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...
 
REAL8VectordirectCoef
 The direct filter coefficients. More...
 
REAL8VectorrecursCoef
 The recursive filter coefficients. More...
 
REAL8Vectorhistory
 The previous values of w. More...
 

Field Documentation

◆ name

const CHAR* REAL8IIRFilter::name

User assigned name.

Definition at line 169 of file IIRFilter.h.

◆ deltaT

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.

◆ directCoef

REAL8Vector* REAL8IIRFilter::directCoef

The direct filter coefficients.

Definition at line 171 of file IIRFilter.h.

◆ recursCoef

REAL8Vector* REAL8IIRFilter::recursCoef

The recursive filter coefficients.

Definition at line 172 of file IIRFilter.h.

◆ history

REAL8Vector* REAL8IIRFilter::history

The previous values of w.

Definition at line 173 of file IIRFilter.h.