📄 reinf3_13.m
字号:
%%%%%%%%%% Reinforcement Problem 3.13 %%%%%%%%%%%% 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 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ---- Another feedback connection ----%cleardisp('Reinforcement Problem 3.13')Ts = 1;denG = conv([1 0.5],[69 -5 5]);G = tf(6*[3 1],denG,Ts) % forward path in TF formH = tf([15 1],[5 -1],Ts) % feedback path in TF formT = feedback(G,H) % closed-loop system[zT,pT,kT] = zpkdata(T,'v') % CL zeros,poles,gain[magpT,thetapT] = xy2p(pT) % polar form for CL polesdtime = 0:Ts:40;y = step(T,dtime); % compute step responsefigurestem(dtime,y,':','filled');grid % plot step responsetitle('Step response for Reinforcement Problem 3.13')xlabel('Discrete time k')%%%%%%%%%%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -