Convert state-space representation (MIMO) to transfer function matrix
40 次查看(过去 30 天)
显示 更早的评论
how to convert state-space model (mimo) to transfer function matrix
0 个评论
采纳的回答
Walter Roberson
2020-11-26
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 个评论
更多回答(2 个)
EMAD ALHANI
2020-11-26
1 个评论
Walter Roberson
2020-11-26
Your D is 4 x 2. That is the configuration for 2 inputs and 4 outputs per input
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!