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

相关推荐
ting94520002 小时前
Tornado 全栈技术深度指南:从原理到实战
人工智能·python·架构·tornado
果汁华2 小时前
Browserbase Skills:让 Claude Agent 真正“看见“网页世界
人工智能·python
ZhengEnCi2 小时前
04-缩放点积注意力代码实现 💻
人工智能·python
HackTwoHub3 小时前
AI大模型网关存在SQL注入、附 POC 复现、影响版本LiteLLM 1.81.16~1.83.7(CVE-2026-42208)
数据库·人工智能·sql·网络安全·系统安全·网络攻击模型·安全架构
段一凡-华北理工大学3 小时前
【高炉炼铁领域炉温监测、预警、调控智能体设计与应用】~系列文章08:多模态数据融合:让数据更聪明
人工智能·python·高炉炼铁·ai赋能·工业智能体·高炉炉温
网络工程小王4 小时前
【LangChain 大模型6大调用指南】调用大模型篇
linux·运维·服务器·人工智能·学习
HIT_Weston4 小时前
63、【Agent】【OpenCode】用户对话提示词(示例)
人工智能·agent·opencode
CV-杨帆4 小时前
Phi-4-mini-flash-reasoning 部署安装与推理测试完整记录
人工智能
MediaTea4 小时前
AI 术语通俗词典:C4.5 算法
人工智能·算法
海兰4 小时前
【第27篇】Micrometer + Zipkin
人工智能·spring boot·alibaba·spring ai