can program tell if SISO or MIMO
Ältere Kommentare anzeigen
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 Kommentare
Star Strider
am 10 Dez. 2022
What’s the transfer function?
What Toolboxes are you using?
Akzeptierte Antwort
Weitere Antworten (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 Kommentar
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)
Kategorien
Mehr zu Signal Integrity Kits for Industry Standards finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!