Example 10 -- Model Conversion from Transfer Function to State Space and Zero-Pole-Gain
Create the system with a given transfer function:
4*s^3 + 8.4*s^2 + 30.8*s + 60
---------------------------------------
s^4 + 4.12*s^3 + 17.4*s^2 + 30.8*s + 60
find the system matrices, zeros, poles and gain of the system.
Answer:
The system matrices are
[-4.12 -17.4 -30.8 -60] [1]
A = [1 0 0 0 ], B = [0], C = [4 8.4 30.78 60], D = 0
[0 1 0 0 ] [0]
[0 0 1 0 ] [0]
The zeros, poles and gain of the system are
zeros = -0.05 + 2.738156i, -0.05 - 2.738156*i, -2.0
poles = -1.797086 + 2.213723i, -1.797086 - 2.213723i,
-0.262914 + 2.703862i, -0.262914 - 2.703862i
k = 4
Program in Ch
Output in Ch
Program in MATLAB
|