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

相关推荐
aqi001 小时前
15天学会AI应用开发(七)有了大模型为什么还要引入RAG
人工智能·python·大模型·ai编程·ai应用
用户5191495848452 小时前
libcurl Headers API 释放后重利用漏洞:跨请求复用头句柄导致堆内存安全风险
人工智能·aigc
踩蚂蚁2 小时前
自定义语音唤醒词:从训练到部署的完整链路实践
人工智能
用户5191495848452 小时前
CVE-2025-1094 PostgreSQL SQL注入与WebSocket劫持远程代码执行利用工具
人工智能·aigc
IT_陈寒3 小时前
SpringBoot自动配置这个坑,我踩进去又爬出来了
前端·人工智能·后端
冬奇Lab15 小时前
Agent 系列(23):Web Agent——让 Agent 真正浏览网页
人工智能·llm·agent
冬奇Lab15 小时前
每日一个开源项目(第135篇):codebase-memory-mcp - 给 AI Agent 一张代码库的知识图谱
人工智能·开源·llm