bundles / scipy latest / scipy / signal / _ltisys / TransferFunction / _zinv_to_z
staticmethod
scipy.signal._ltisys:TransferFunction._zinv_to_z
source: /scipy/signal/_ltisys.py :715
Signature
staticmethod
def _zinv_to_z ( num , den ) Summary
Change a transfer function from the variable z to z**-1.
Parameters
num, den: 1d array_likeSequences representing the coefficients of the numerator and denominator polynomials, in order of ascending degree of 'z**-1'. That is,
5 + 3 z**-1 + 2 z**-2is presented as[5, 3, 2].
Returns
: num, den: 1d array_likeSequences representing the coefficients of the numerator and denominator polynomials, in order of descending degree of 'z'. That is,
5z**2 + 3z + 2is presented as[5, 3, 2].
Aliases
-
scipy.signal.TransferFunction._zinv_to_z