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
|