can program tell if SISO or MIMO
Afficher commentaires plus anciens
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 commentaires
Star Strider
le 10 Déc 2022
What’s the transfer function?
What Toolboxes are you using?
Réponse acceptée
Plus de réponses (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 commentaire
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)
Catégories
En savoir plus sur Control System Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!