This is documentation for an old release of SciPy (version 0.7.). Read this page in the documentation of the latest stable release (version 1.15.1).
Compute frequency response of analog filter.
Given the numerator (b) and denominator (a) of a filter compute its frequency response.
b[0]*(jw)**(nb-1) + b[1]*(jw)**(nb-2) + ... + b[nb-1]
Parameters: | b : ndarray
a : ndarray
worN : {None, int}, optional
|
---|---|
Returns: | w : ndarray
h : ndarray
|