fig9_07.m

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

M
26
字号
%  Figure 9.07     Feedback Control of Dynamic Systems, 4e
%                        Franklin, Powell, Emami
%
% fig9_07.m is a script to generate Fig. 9.7       
% the satellite with low-gain PD compensation
clf;
np =[0.0360,    0.9100];

dp =[1.0000,    0.0396,    1.0010,    0.0000,    0.0000];

nc2=0.001*[30, 1];

nol2=conv(nc2,np);
dol2=dp;

hold off ; clf
% define frequency range
w=logspace(-2,.2);
w(46)=1;
% subplot(221); 

rlocus(nol2,dol2);
axis([-0.5, 0.5, -1.2, 1.2]); 
grid;
title('Fig. 9.7 Root locus for the low-gain PD satellite design')

⌨️ 快捷键说明

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