This is documentation for an old release of SciPy (version 0.12.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Butterworth digital and analog filter design.
Design an Nth order digital or analog Butterworth filter and return the filter coefficients in (B,A) or (Z,P,K) form.
Parameters : | N : int
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