lowPass method
void
lowPass(])
ChebyshevI Lowpass filter with custom topology
Param:
- order - The order of the filter
- sampleRate - The sampling rate of the system
- cutoffFrequency - The cutoff frequency
- rippleDb - pass-band ripple in decibel sensible value: 1dB
- directFormType - The filter topology. Default dirrect_form_II
Implementation
void lowPass(
int order, double sampleRate, double cutoffFrequency, double rippleDb,
[int directFormType = DirectFormAbstract.direct_form_II]) {
_AnalogLowPass analogProto = _AnalogLowPass(order);
analogProto.design(rippleDb);
LayoutBase digitalProto = LayoutBase(order);
LowPassTransform(cutoffFrequency / sampleRate, digitalProto, analogProto);
setLayout(digitalProto, directFormType);
}