📄 fig7_25.m
字号:
% Figure 7.25 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% fig7_25.m
clf;
f=[0 1;-1 0];
g=[0;1];
h=[1 0];
K=[3 4];
fc=f-g*K;
gc=[4*g [1;0]];
hc=[h;[0 1]; -K/4];
jc=[0 0;0 0; 1 0];
l=[20;99];
A=[fc, 0*fc;l*h-g*K, f-l*h];
B=[0 1;4 0;0 0;4 0];
C=eye(4);
D=[0 0;0 0;0 0;0 0];
t=0:.03:4;
sys=ss(A,B,C,D);
[y]=impulse(sys,t);
plot(t,y(:,:,2));
grid;
xlabel('Time (sec)');
ylabel('Amplitude');
text(.25,2,'x_2hat');
text(.5,1,'x_1hat');
text(.15,.8,'x_1');
text(.25,-.5,'x_2');
title('Fig.7.25 Initial condition response of oscillator with estimator')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -