fig9_42.m
来自「包含了控制理论的各种仿真程序」· M 代码 · 共 31 行
M
31 行
% Figure 9.42 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% fig9_42.m is a script to generate Figure 9.42, the rootlocus for
% altitude control with inner-loop stabilization and altitude feedback
% alone
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.7000;
-2.0800;
0;
0];
h=[0 0 0 0 1];
j=0;
rlocus(ftq,g,-h,j);
v=[-12 12 -4 4];
axis(v);
grid;
title('Fig. 9.42 Rootlocus for altitude feedback with inner-loop stab.')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?