Signal Processing Toolbox | Help Desk |
ss2tf
State-space to transfer function conversion.
[num,den] = ss2tf(a,b,c,d,iu)
ss2tf
converts a state-space representation of a given system to an equivalent transfer function representation.
[num,den] = ss2tf(a,b,c,d,iu)
returns the transfer functioniu
-th input. Vector den
contains the coefficients of the denominator in descending powers of s. The numerator coefficients are returned in array num
with as many rows as there are outputs y. The function tf2ss
is the inverse of ss2tf
. ss2tf
also works with systems in discrete time, in which case it returns the z-transform representation.
ss2tf
uses poly
to find the characteristic polynomial det(sI-A) and the equality