fig5_09.m

来自「包含了控制理论的各种仿真程序」· M 代码 · 共 17 行

M
17
字号
% Fig. 5.9   Feedback Control of Dynamic Systems, 4e 
%             Franklin, Powell, Emami
n9=1;
d9=[1 8 32 0];
rlocus(n9,d9)
title('Fig.5.09 The root locus for L(s)=1/s(s^2+8s+32)')
axis([-14 2 -6 6])
z=0:.1:.9;
 wn= 1:6;
 sgrid(z, wn) 
hold on
x=[-2.67 2 -2.67 2];
y=[0 4.67*sqrt(3) 0 -4.67*sqrt(3)];
plot(x,y)
r=roots([1 0 32]);
 plot(r,'*')
 hold off

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?