fig9_40.m

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

M
25
字号
%  Figure 9.40      Feedback Control of Dynamic Systems, 4e
%                        Franklin, Powell, Emami
%
% fig9_40.m is a script to generate Fig. 9.40, the rootlocus
% of the aircraft with feedback from pitch rate to elevator
clf;
% aircraft system matrices
f=[-.00643 .0263 0 -32.2 0;
-.0941 -.624 820 0 0;
-.000222 -0.00153 -.668 0 0;
0 0 1 0 0;
0 -1 0 830 0];

g=[0; -32.7; -2.08; 0; 0];
h=[0 0 -1 0 0];
j=0;
%
%[np, dp]= ss2tf(f,g,h,j);
sys=ss(f,g,h,j);
% axis([-.02 .02 -.015 .015])
rlocus(sys)
grid;
title('Fig. 9.40 Rootlocus for pitch rate to elevator')

⌨️ 快捷键说明

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