LinearSystems.StateSpaceToZeroPole Method

void StateSpaceToZeroPole(TVec z, TVec p, ref Double k, TMtx A, TVec B, TVec C, Double D)

Convert transfer function from state-space to zero-pole form.

#NameTypeDescription
1zTVecsource TVec
2pTVecsource TVec
3kDouble (ref)output
4ATMtxsource TMtx
5BTVecsource TVec
6CTVecsource TVec
7DDoublescalar

Result: stored in self (calling object)

Remarks:

Convert a transfer function defined in state space presentation of the real valued A matrix, B,C vectors and D value. in to its zero-pole form with zeros Z, poles P and gain K. State space system is related to its numerator/denominator representation via the following relation: H(s) = num(s)/den(s) = K ((s-s_(z1))...(s-s_(zn)))/((s-s_(p1))...(s-s_(pn))) = C (sI-A)^(-1)B + D dx/dt = Ax + Bu, y = Cx + Du

x - system input
y - system output
szn - n'th zero
spn - n'th pole
K - system gain
See Also: LinearSystems.ZeroPoleToStateSpace, LinearSystems.StateSpaceToTransferFun, LinearSystems.TransferFunToStateSpace, LinearSystems.LTIZeros