Convert state-space representation (MIMO) to transfer function matrix
39 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
EMAD ALHANI
el 26 de Nov. de 2020
Respondida: EMAD ALHANI
el 26 de Nov. de 2020
how to convert state-space model (mimo) to transfer function matrix
0 comentarios
Respuesta aceptada
Walter Roberson
el 26 de Nov. de 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 comentarios
Más respuestas (2)
EMAD ALHANI
el 26 de Nov. de 2020
1 comentario
Walter Roberson
el 26 de Nov. de 2020
Your D is 4 x 2. That is the configuration for 2 inputs and 4 outputs per input
Ver también
Categorías
Más información sobre Numeric Linear Time-Invariant Models en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!