fig9_44.m
来自「包含了控制理论的各种仿真程序」· M 代码 · 共 27 行
M
27 行
% Figure 9.44 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% fig9_44.m is a script to generate the SRL for the aircraft with
% the inner loop stabilization in place.
clf;
ftq =[-0.0064 0.0263 0 -32.2000 0;
-0.0941 -0.6240 761.1400 -196.2000 0;
-0.0002 -0.0015 -4.4120 -12.4800 0;
0 0 1.0000 0 0;
0 -1.0000 0 830.0000 0];
g=[0; -32.7; -2.08; 0; 0];
h=[0 0 0 0 1];
j=0;
% form the matrices of the SRL
a=[-ftq', -h'*h;0*ftq, ftq];
b=[0*g;g];
c=[g', 0*g'];
d=0;
rlocus(a,b,c,d);
v=[-8, 8, -8, 8];
axis(v);
grid;
title(' Fig. 9.44 SRL for the altitude autopilot')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?