当前位置:网站首页>Chapter 4 - first order multi-agent system consistency - > switching topology system consistency [program code]
Chapter 4 - first order multi-agent system consistency - > switching topology system consistency [program code]
2022-07-19 09:42:00 【Zhao-Jichao】
% The control basis and application of the unity of multi-agent system
% The first 4 Chapter - First order multi-agent system consistency -> Switching topology system consistency
% Author: Zhao-Jichao
% Date: 2022-07-14
clear
clc
%% Laplacian Matrix
La= [1 0 0 -1
-1 1 0 0
-1 -1 2 0
0 0 -1 1];
Lb= [1 0 0 -1
-1 1 0 0
0 -1 1 0
0 0 -1 1];
Lc= [1 0 0 -1
-1 1 0 0
0 -1 1 0
0 -1 -1 2];
Ld= [3 -1 -1 -1
-1 2 -1 0
-1 -1 2 0
-1 -1 -1 3];
%% Initial States
x_1(:,1) = 20;
x_2(:,1) = 10;
x_3(:,1) = 40;
x_4(:,1) = 00;
%% Time parameters
tBegin = 0;
tFinal = 5;
dT = 0.01;
times = (tFinal-tBegin)
边栏推荐
- C语言基础篇 —— 2-1 指针与野指针
- MySQL--SQL优化案例--隐式字符编码转换
- Mutual access between components
- 第十章 STL 之 stack
- 关于基础模块中的依赖由微服务中的子模块继承的时候依赖失效的问题
- [C language] data type and meaning
- pip和pip3的区别用法详解
- Detailed explanation of C51 common data types
- Target detection model size calculation, model complexity (parameter conversion formula)
- R language ggplot2 visual faceting: ggplot2 visualizes facets and removes the border lines between facets and the gap between facets (remove spacing between panels)
猜你喜欢
rhcsa 第二天 7.15
第十章 STL 之 stack
SAP Fiori 的附件处理(Attachment handling)
[hero planet July training leetcode problem solving daily] 17th kuansou
Un7.16: how to deploy projects on code cloud and invite team members?
岚图梦想家的产品力到底如何?
ES Restful操作
Questions d'entrevue - concevoir des cas d'essai pour:: memcpy
【C语言】void类型和void*指针类型
Detailed explanation of the different usage of PIP and PIP3
随机推荐
第十章 STL 之 stack
[C language] void type and void* pointer type
C language compilation process
DEDECMS织梦保存当前栏目更改时失败的解决方法
MySQL--SQL优化案例--隐式字符编码转换
MySQL view
Rhcsa the next day 7.15
面試題-給::memcpy函數設計測試用例
Mysqldump full recovery to another new instance, and then perform flush privileges analysis
Un7.16: how to deploy projects on code cloud and invite team members?
面试题-给::memcpy函数设计测试用例
Chapter 12 list of STL
岚图梦想家的产品力到底如何?
R language ggplot2 visual faceting: ggplot2 visualizes facets and removes the border lines between facets and the gap between facets (remove spacing between panels)
Questions d'entrevue - concevoir des cas d'essai pour:: memcpy
DEDECMS织梦文章列表标题重复显示解决方案
Anaconda and jupyter notebook entry level detailed tutorial
Memory LDA LDA in Blas level-3 sgemm cublesgemmex cubulassgemm
企业数字化转型,为何 SaaS 模式如此重要?
第一部分—C语言基础篇_1. C语言概述