bandStop method

void bandStop(
  1. int order,
  2. double sampleRate,
  3. double centerFrequency,
  4. double widthFrequency,
  5. double rippleDb, [
  6. int directFormType = DirectFormAbstract.direct_form_II,
])

Bandstop filter with custom topology

Params:

  • order - Filter order (actual order is twice)
  • sampleRate - Samping rate of the system
  • centerFrequency - Center frequency
  • widthFrequency - Width of the notch
  • rippleDb - pass-band ripple in decibel sensible value: 1dB
  • directFormType - The filter topology. Default direct_form_II

Implementation

void bandStop(int order, double sampleRate, double centerFrequency,
    double widthFrequency, double rippleDb,
    [int directFormType = DirectFormAbstract.direct_form_II]) {
  _AnalogLowPass analogProto = _AnalogLowPass(order);
  analogProto.design(rippleDb);
  LayoutBase digitalProto = LayoutBase(order * 2);
  BandStopTransform(centerFrequency / sampleRate, widthFrequency / sampleRate,
      digitalProto, analogProto);
  setLayout(digitalProto, directFormType);
}