Matlab 多输入系统极点配置

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、参考论文

相关推荐
Shockang14 小时前
AI 设计工作流全景拆解:Figma MCP / Claude Design / Codex / Google Stitch
人工智能
To_OC15 小时前
数据集划分不是随便切:手把手切分大众点评情感数据集
人工智能·llm·agent
冬奇Lab16 小时前
每日一个开源项目(第142篇):android/skills - Google 官方 Android 开发 AI Skill 库
人工智能·开源·资讯
冬奇Lab16 小时前
Skill 系列(06):Skill 工程化与治理——路由准确率 38%、压缩节省 76%
人工智能·开源·agent
IT_陈寒18 小时前
Vue这个坑我跳了两次,原来问题出在这
前端·人工智能·后端
新新技术迷18 小时前
Node给AI接口做SSE代理与鉴权
人工智能
redreamSo19 小时前
大模型是不是到顶了?瓶颈到底在哪
人工智能·openai
Oo92019 小时前
Tool Use 背后的技术逻辑
人工智能
姗姗来迟了19 小时前
Vue3封装AI流式对话组件踩坑实录
人工智能