Convert state-space representation (MIMO) to transfer function matrix

G
grishswami · Dec 16, 2020 · 2K views
Question
how to convert state-space model (mimo) to transfer function matrix
Expert Answer
Profile picture of John Michell
John Michell PhD Expert
Answered Aug 12, 2026
A = [-1.5,-2;1,0];
B = [0.5;0];
C = [0,1];
D = 0;
sys = ss(A,B,C,D)
sys_as_tf = tf(sys)
sys =
 
  A = 
         x1    x2
   x1  -1.5    -2
   x2     1     0
 
  B = 
        u1
   x1  0.5
   x2    0
 
  C = 
       x1  x2
   y1   0   1
sys_as_tf = tf(sys)
sys_as_tf =
 
        0.5
  ---------------
  s^2 + 1.5 s + 2
 
Continuous-time transfer function.
Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!