This is documentation for an old release of SciPy (version 0.10.1). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.signal.tf2zpk

scipy.signal.tf2zpk(b, a)

Return zero, pole, gain (z,p,k) representation from a numerator, denominator representation of a linear filter.

Parameters :

b : ndarray

Numerator polynomial.

a : ndarray

Denominator polynomial.

Returns :

z : ndarray

Zeros of the transfer function.

p : ndarray

Poles of the transfer function.

k : float

System gain.

If some values of b are too close to 0, they are removed. In that case, a :

BadCoefficients warning is emitted. :

Previous topic

scipy.signal.step2

Next topic

scipy.signal.zpk2tf

This Page