Convert state-space representation (MIMO) to transfer function matrix
39 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
EMAD ALHANI
am 26 Nov. 2020
Beantwortet: EMAD ALHANI
am 26 Nov. 2020
how to convert state-space model (mimo) to transfer function matrix
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 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 Kommentare
Weitere Antworten (2)
EMAD ALHANI
am 26 Nov. 2020
1 Kommentar
Walter Roberson
am 26 Nov. 2020
Your D is 4 x 2. That is the configuration for 2 inputs and 4 outputs per input
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!