Chebyshev type I digital and analog filter design.
Design an Nth order digital or analog Chebyshev type I filter and return the filter coefficients in (B,A) or (Z,P,K) form.
Parameters : | N : int
rp : float
Wn : array_like
btype : {‘lowpass’, ‘highpass’, ‘bandpass’, ‘bandstop’}, optional
analog : bool, optional
output : {‘ba’, ‘zpk’}, optional
|
---|---|
Returns : | b, a : ndarray, ndarray
z, p, k : ndarray, ndarray, float
|
See also