?? ex5_17.m
字號:
% ex5_17
% 離散控制系統(tǒng)的根軌跡
figure('pos',[50,50,250,200],'color','w');
axes('pos',[0.1,0.16,.8,.8]);
G=tf([0.5151 -0.1452 -0.2963 0.05284],[1 -2.3679 1.7358 -0.3679 0])
rlocus(G);
axis([-3 1 -1.5 1.5]);
hold on;
t=0:0.1:2*pi;
x=sin(t);
y=cos(t);
plot(x,y,':')
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -