参考文献格式:
Qinglai Wei, Xin Wang, Xiangnan Zhong and Naiqi Wu, “Consensus Control of Leader-Following Multi-Agent Systems in Directed Topology With Heterogeneous Disturbances,” IEEE/CAA J. Autom. Sinica, vol. 8, no. 2, pp. 423-431, Feb. 2021.doi:10.1109/JAS.2021.1003838

Q. Wei, X. Wang, X. Zhong and N. Wu, “Consensus Control of Leader-Following Multi-Agent Systems in Directed Topology With Heterogeneous Disturbances,” in IEEE/CAA Journal of Automatica Sinica, vol. 8, no. 2, pp. 423-431, February 2021, doi: 10.1109/JAS.2021.1003838.

Paper Simulations Parameters

% Title: Consensus Control of Leader-Following Multi-Agent Systems in Directed Topology
% With Heterogeneous Disturbances
% Paper Simulationsclear
clcA = [0 -1  50  0  00 -1  0];
B = [3  00  21  2];
L = [2  0 -2  0-6  6  0  00  0 1.95 -1.950 -2.1 0 2.1];
D = [1  0  0  00  1  0  00  0  0  00  0  0  0];

利用 ode45 解微分方程,程序及结果如下:

clear;
clc;% 程序主函数代码如下:
t0 = 0;
tfinal = 20;
X0 = [0.5; 1.0; 1.5];[t, X0t] = ode45(@SunFun, [t0 tfinal], X0);% 绘制结果图
% plot(t,X0t(:,1), t,X0t(:,2), t,X0t(:,3))
subplot(2,2,1); plot(t,X0t(:,1));
subplot(2,2,2); plot(t,X0t(:,2));
subplot(2,2,3); plot(t,X0t(:,3));% 微分方程函数,状态导数
function dx0 = SunFun(t,x0)A = [0 -1  50  0  00 -1  0];% 导数关系式
dx0 = A * x0 + cos(t) * x0;end


2021-03-31:
不知是自己的程序编写错误,还是Paper中所给参数有问题,自己仿真出来的结果与作者所给结果大相径庭。


【Paper】2021_Consensus Control of Leader-Following Multi-Agent Systems in Directed Topology相关推荐

  1. 【Paper】2019_Consensus Control of Multiple AUVs Recovery System Under Switching Topologies and Time D

    Zhang W, Zeng J, Yan Z, et al. Consensus control of multiple AUVs recovery system under switching to ...

  2. 【Paper】2007_Consensus control for a class of networks of dynamic agents 二阶静态一致性

    文章目录 3. Control Protocol and Network Dynamics 4. Network with Fixed Topology 定理 1 Remark 1 Lemma 2 证 ...

  3. 【Paper】2013_Cooperative control of multi-agent systems 二阶动态一致性

    Lewis F L, Zhang H, Hengster-Movric K, et al. Cooperative control of multi-agent systems: optimal an ...

  4. 【Paper】2017_Distributed control for high-speed trains movements

    Y. Zhao and T. Wang, "Distributed control for high-speed trains movements," 2017 29th Chin ...

  5. 【Paper】2006_Time-Optimal Control of a Hovering Quad-Rotor Helicopter

    Lai L C, Yang C C, Wu C J. Time-optimal control of a hovering quad-rotor helicopter[J]. Journal of I ...

  6. 【Paper】2022_Fixed-Time Cooperative Tracking for Delayed Disturbed Multi-Agent Systems Under Dynamic

    2022_Fixed-Time Cooperative Tracking for Delayed Disturbed Multi-Agent Systems Under Dynamic Event-T ...

  7. 【Paper】2019_Distributed bipartite leader-following consensus of linear multi-agent systems with inpu

    2019_Distributed bipartite leader-following consensus of linear multi-agent systems with input time ...

  8. 【Paper】2021_Optimal Distributed Leader-following Consensus of Linear Multi-agent Systems: A Dynamic

    Ren Y, Wang Q, Duan Z. Optimal Distributed Leader-following Consensus of Linear Multi-agent Systems: ...

  9. 【Paper】2020_Anomaly Detection and Identification for Multiagent Systems Subjected to Physical Faults

    Y. Li, H. Fang and J. Chen, "Anomaly Detection and Identification for Multiagent Systems Subjec ...

最新文章

  1. Oracle存储过程中跳出循环的写法
  2. [转载] Knowledge Management and Enginnering——02 知识表示方法
  3. 期货与期权(part9)--交易员类型和交易指令类型
  4. linux7禁用ipv6,RHEL 7 及 CentOS 7 彻底禁用IPv6的方法
  5. java语言程序设计教程翁恺第二版课后答案_《JAVA语言程序设计教程(第2版)/翁恺 肖少拥》翁恺,肖少拥著【摘要 书评 在线阅读】-苏宁易购图书...
  6. 华为手机怎么下载linux命令,在linux命令
  7. 京东面试官:你是怎么理解 MySQL 的优化原理的?
  8. 阿狸心形表白html,2013qq情侣分组心形一对 心心相印的地久天长
  9. Oracle统计信息锁,oracle 由于impdp 引起的表统计信息被锁 ORA-20005: object statistics are locked...
  10. Triumph X与K-Hyundai美术馆将于今年4月推出现代美术NFT
  11. 304. 二维区域和检索 - 矩阵不可变
  12. Retinex算法--低照度图像增强
  13. 结构变量输入不正确的顺序可能会导致不正确的操作结果
  14. rs232 485 ttl区别
  15. 如何自制daplink_DAPLINK功能介绍
  16. 由OSS AccessKey泄露引发的思考
  17. 多线程Retry: 解释
  18. 开发也可以如此简单!华为云发布两款开发工具
  19. 不填写内容用哪个斜杠代替_斜杠可以代替顿号在句子中使用吗
  20. Alpha测试和Beta测试简介

热门文章

  1. 分布式文件系统HDFS练习
  2. 【Kafka】Kafka-分区数-备份数-如何设置-怎么确定-怎么修改
  3. 【Node】node.js实现服务器的反向代理,解决跨域问题
  4. 17.C#类型判断和重载决策(九章9.4)
  5. HttpResponseCache的使用缓存cache
  6. Linux下的软raid实验一例
  7. UA MATH564 概率论 高阶矩的计算:有限差算子方法1
  8. Mathematica 对曲线进行拟合
  9. C++类和对象学习总结
  10. JAVA 调用Web Service