📄 fig6_57a.m
字号:
% Fig. 6.57a Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% response comparison of continuous and digital control step.
clear all;
close all;
sim('fig6_57c')
r=[1 1]; %reference input
t=[0 5];
plot(t,r,'r')
hold on
plot(ycd(:,1),ycd(:,2))
plot(ycd(:,1),ycd(:,3),'m:')
title('Figure 6.57(a) Step Responses of Digital and Continuous Controllers')
ylabel('y')
xlabel('Time (sec)')
text(1.1,1.06, '\leftarrow continuous controller')
text(.7,1.23, '\leftarrow digital controller')
grid
hold off
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -