如何绘制MIMO系统指定通道的Bode图?。
Ältere Kommentare anzeigen
如何绘制MIMO系统指定通道的Bode图?比如下面的双输入、双输出系统:
code
[A=[2.25,-5,-1.25,-0.5;2.25,-4.25,-1.25,-0.25;0.25,-0.5,-1.25,-1;1.25,-1.75,-0.25,-0.75];
B=[4,6;2,4;2,2;0,2];
C=[0,0,0,1;0,2,0,2];
D=zeros(2,2);
G=ss(A,B,C,D);]
由于所研究的系统是四输入、四输出的系统,通道比较多,如果直接使用bode(G)命令,绘制出的Bode图会很多,如何设置,只绘制出指定通道的Bode图,刚开始学习控制,希望能给出详细的解答,谢谢
Antworten (1)
使用命令 bode(G(i,j)) 指定第 j 个输入对第 i 个输出的通道
比如你想画 第1个输入 对 第4个输出 的影响:bode(G(4,1))
Kategorien
Mehr zu Time and Frequency Domain Analysis finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!