1、内容简介
略
Matlab 172-多输入系统极点配置
可以交流、咨询、答疑
2、内容说明
略
3、仿真分析
略
clc
close all
clear
A = [-6.5727 1.1902 0 -53.4085;
1.1902 -6.5727 0 -53.4085;
0.5294 0.5294 0 17.7502;
0 0 1 0];
B = [1.3797 -0.2498;
-0.2498 1.3797;
-0.1111 -0.1111;
0 0];
C = eye(4);
D = zeros(4,2);
sys = ss(A,B,C,D);
figure
step(sys)
[y,t] = step(sys);
y1 = y(:,:,1);
y2 = y(:,:,2);
figure
plot(t,y1(:,1))
xlabel 时间
ylabel x1
title U1输入信号
figure
plot(t,y1(:,2))
xlabel 时间
ylabel x2
title U1输入信号
figure
plot(t,y1(:,3))
xlabel 时间
ylabel x3
title U1输入信号
figure
plot(t,y1(:,4))
xlabel 时间
ylabel x4
title U1输入信号
figure
plot(t,y2(:,1))
xlabel 时间
ylabel x1
title U2输入信号
figure
plot(t,y2(:,2))
xlabel 时间
ylabel x2
title U2输入信号
figure
plot(t,y2(:,3))
xlabel 时间
ylabel x3
title U2输入信号
figure
plot(t,y2(:,4))
xlabel 时间
ylabel x4
title U2输入信号
4、参考论文
略