Concept Flow - IIR filter design (butter, cheby1)
Choose filter type: Butterworth or Chebyshev1
Set filter order and cutoff frequencies
Call scipy.signal function butter() or cheby1()
Get filter coefficients (b, a)
Use coefficients to filter data or analyze frequency response
End
This flow shows how to design an IIR filter by choosing type, setting parameters, getting coefficients, and applying the filter.