cupyx.scipy.signal.bilinear_zpk#
- cupyx.scipy.signal.bilinear_zpk(z, p, k, fs)[source]#
Return a digital IIR filter from an analog one using a bilinear transform.
Transform a set of poles and zeros from the analog s-plane to the digital z-plane using Tustin’s method, which substitutes
2*fs*(z-1) / (z+1)
fors
, maintaining the shape of the frequency response.- Parameters:
- Returns:
z (ndarray) – Zeros of the transformed digital filter transfer function.
p (ndarray) – Poles of the transformed digital filter transfer function.
k (float) – System gain of the transformed digital filter.