reinf10_1.m
来自「离散控制系统设计的MATLAB 代码」· M 代码 · 共 20 行
M
20 行
%%%%%%%%%%% Reinforcement Problem 10.1 %%%%%%%%%%
% 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 %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ---- Third-order system ----
%
clear
disp('Reinforcement Problem 10.1')
A = [ 0.8238 0.0400 0.0810; ...
0.0459 0.7799 0.1161; ...
0.0781 0.0020 0.7448]
B = [ 0.0503; 0.0296; 0.0887]
% controllability matrix
Co = ctrb(A,B)
rank(Co)
%%%%%%%%%%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?