목차
1. full order estimation 디자인, 시뮬레이션
2. reduced order estimation 디자인, 시뮬레이션
2. reduced order estimation 디자인, 시뮬레이션
본문내용
B*K+L*C A-B*K-L*C];
Bnew = [0;0;0;0;0;0];
Cnew = [C zeros(size(C));0 0 1 0 0 0];
x0=[0.1 0 0 0 0 0];
t = 0: 0.01 : 5;
u = 0*t;
[y,x] = lsim(Anew,Bnew,Cnew,0,u,t,x0);
plot(t,y);
legend('Theta','v');
Bnew = [0;0;0;0;0;0];
Cnew = [C zeros(size(C));0 0 1 0 0 0];
x0=[0.1 0 0 0 0 0];
t = 0: 0.01 : 5;
u = 0*t;
[y,x] = lsim(Anew,Bnew,Cnew,0,u,t,x0);
plot(t,y);
legend('Theta','v');
소개글