Convert state-space representation (MIMO) to transfer function matrix
40 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
EMAD ALHANI
il 26 Nov 2020
Risposto: EMAD ALHANI
il 26 Nov 2020
how to convert state-space model (mimo) to transfer function matrix
0 Commenti
Risposta accettata
Walter Roberson
il 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 Commenti
Più risposte (2)
EMAD ALHANI
il 26 Nov 2020
1 Commento
Walter Roberson
il 26 Nov 2020
Your D is 4 x 2. That is the configuration for 2 inputs and 4 outputs per input
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!