Structure Design

Generic structure holding a filter description (coefficients vector for a FIR filter, or rationnal function for a IIR filter).

Namespace: dsp::filter

Methods list

dsp::filter::Design::Design(const FRat<cfloat> &filtre)
Constructor (from a complex rationnal function).

dsp::filter::Design::Design(const FRat<float> &filtre)
Constructor (from a real rationnal function).

dsp::filter::Design::Design(const Vecf &coefs)
Constructor (from a vector of coefficients - FIR filter).

dsp::filter::Design::Design(const Vecf &coefs_numer, const Vecf &coefs_dénom)
Constructor (from two vectors of coefficients - IIR filter).

dsp::filter::Design::Design()