can program tell if SISO or MIMO
Mostrar comentarios más antiguos
Hello. I have a task to check if a transfer function is SISO or MIMO. How can this be done in MATLAB.
I have tried issiso() but this tell me that the transfer function is alwasy SISO.
Is there a function that can tell me if a system is SIOS or MIMO for the transfer function?
I am new with MATLAB and i havent had any luck finding anything for this so far.
2 comentarios
Star Strider
el 10 de Dic. de 2022
What’s the transfer function?
What Toolboxes are you using?
Respuesta aceptada
Más respuestas (1)
Your code looks correct for determining whether or not a system is SISO
G1 = tf([2 0], [1 2]);
G2 = tf([1 -1], [1 6 15]);
sys = series(G1,G2)
issiso(sys)
1 comentario
Yes, issiso() seems to be working
G1 = tf([2 0], [1 2]);
G2 = tf([1 -1], [1 6 15]);
sys = series(G1,G2)
sys1 = [G1,G2]
sys2 = [G1; G2]
issiso(sys)
issiso(sys1)
issiso(sys2)
Categorías
Más información sobre Signal Integrity Kits for Industry Standards en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!