reinf10_5.m

来自「离散控制系统设计的MATLAB 代码」· M 代码 · 共 18 行

M
18
字号
%%%%%%%%%%% Reinforcement Problem 10.5 %%%%%%%%%%
%   Discrete-Time Control Problems using        %
%       MATLAB and the Control System Toolbox   %
%   by J.H. Chow, D.K. Frederick, & N.W. Chbat  %
%         Brooks/Cole Publishing Company        %
%                September 2002                 %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%   ---- Fourth-order modal system ----
%
clear
disp('Reinforcement Problem 10.5')
A = diag([0.9048 0.8187 0.7788 1])
B = [0.0476; 0.0476; 0.0885; 0.5]
p = [0.7 0.75 0.85 0.95]'
F = place(A,B,p)
A_cl = A-B*F
diff = sort(p) - sort(eig(A_cl))
%%%%%%%%%%

⌨️ 快捷键说明

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