can program tell if SISO or MIMO
古いコメントを表示
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.
採用された回答
その他の回答 (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 件のコメント
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)
カテゴリ
ヘルプ センター および File Exchange で Signal Integrity Kits for Industry Standards についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!