⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fig8_08.m

📁 包含了控制理论的各种仿真程序
💻 M
字号:
% Fig. 8.8   Feedback Control of Dynamic Systems, 4e 
%             Franklin, Powell, Emami

%    (requires fig8_08c.mdl)

clear all;
close all;

% response comparison of continuous and digital control.

clear
clf
[tout,yout]=sim('fig8_08c');
r=[1 1];   %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 8.8 Step Responses of Digital and Continuous Controllers')
ylabel('Position, y')
xlabel('Time (sec)')
text(.33,.9, '\leftarrow continuous  controller')
text(.7,1.3, 'digital  controller')
grid
hold off
subplot(2,1,2)
plot(ycd(:,1),ycd(:,4))
hold on
plot(ycd(:,1),ycd(:,5),'m')
ylabel('Control, u')
xlabel('Time (sec)')
text(.55,10, ' continuous  controller')
text(.08,29, '\leftarrow digital  controller')
grid
hold off

⌨️ 快捷键说明

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