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