Convert state-space representation (MIMO) to transfer function matrix
43 views (last 30 days)
Show older comments
EMAD ALHANI
on 26 Nov 2020
Answered: EMAD ALHANI
on 26 Nov 2020
how to convert state-space model (mimo) to transfer function matrix
0 Comments
Accepted Answer
Walter Roberson
on 26 Nov 2020
But if you have an existing ss system created with https://www.mathworks.com/help/control/ref/ss.html then use tf()
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)
0 Comments
More Answers (2)
EMAD ALHANI
on 26 Nov 2020
1 Comment
Walter Roberson
on 26 Nov 2020
Your D is 4 x 2. That is the configuration for 2 inputs and 4 outputs per input
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!