reinf5_6.m

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

M
15
字号
%%%%%%%%%%% Reinforcement Problem 5.6 %%%%%%%%%%%
%   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                 %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% - Repeat Problem 5.5 by smapling at 200 Hz
disp('Reinforcement Problem 5.6')

Ts = 1/200;
t = [0:Ts:10*Ts];
e2 = cos(100*2*pi*t)
figure, dplot(t,e2)
%%%%%%%%%%

⌨️ 快捷键说明

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