Namespaces

Types in MathNet.Filtering.FIR

Type OnlineFirFilter

Namespace MathNet.Filtering.FIR

Parent OnlineFilter

Finite Impulse Response (FIR) Filters are based on Fourier series and implemented using a discrete convolution equation. FIR Filters are always online, stable and causal.
System Description: H(z) = a0 + a1*z^-1 + a2*z^-2 +...

Constructors

Methods

Public Constructors

OnlineFirFilter(IList<double> coefficients)

Finite Impulse Response (FIR) Filter.

Public Methods

bool Equals(object obj)

int GetHashCode()

Type GetType()

double ProcessSample(double sample)

Process a single sample.

Double[] ProcessSamples(Double[] samples)

Process a sequence of sample.

void Reset()

Reset internal state (not coefficients!).

string ToString()