当前位置:网站首页>第4章-一阶多智体系统一致性 -> 领航跟随系统一致性【程序代码】
第4章-一阶多智体系统一致性 -> 领航跟随系统一致性【程序代码】
2022-07-17 10:31:00 【Zhao-Jichao】
| 第4章-一阶多智体系统一致性 -> 领航跟随系统一致性 | 回到目录 | 待续 |
|---|
1. 静态领航者
% 多智能体系统一致性的控制基础及其应用
% 第4章-一阶多智体系统一致性 -> 领航跟随系统一致性
% Author: Zhao-Jichao
% Date: 2022-07-14
clear
clc
%% Laplacian Matrix
global L Ll
L = [1 0 0 -1
-1 1 0 0
0 -1 1 0
0 0 -1 1];
Ll= diag([1 1 0 0]);
%% Initial States
Xf = [20 10 40 00];
Xl = 20;
%% Time Parameters
tBegin = 0;
tFinal = 20;
tspan = [tBegin, tFinal];
%% Calculate ODE Function
In = [Xl Xf]';
out = ode23(@ctFun, tspan, In);
t = out.x;
X = out.y;
%% Draw Graphs
plo边栏推荐
- After working hard, I found that there were so many messes around
- 面试题-给::memcpy函数设计测试用例
- C language force buckle question 25 of K a group of inverted linked list. Multi pointer traversal
- uniapp仓库管理系统源码
- MySQL view
- LDA分类器
- EBay searches eBay products by keyword API return value description
- Target detection model size calculation, model complexity (parameter conversion formula)
- 第一部分—C语言基础篇_2. 数据类型
- Etcd database source code analysis -- etcdserver bootstrap recover store from snapshot
猜你喜欢

Classificateur knn

【C语言】自定义类型初阶知识点

Anycontrol demo demo demo

【C语言】void类型和void*指针类型

Line Flow Based Simultaneous Localization and Mapping

pip和pip3的区别用法详解

Part I - Fundamentals of C language_ 6. Function

Static routing!! Static routing!! Static routing!!

Componentized advanced -- slot

Log desensitization - Reference
随机推荐
面试题-给::memcpy函数设计测试用例
Uniapp warehouse management system source code
[C language] user defined type elementary knowledge points
Vector容器的系列操作( 详解 )
Chapter IX deque of STL
C——指针
C语言编译过程
MySQL 视图
KNN classifier
MySQL user management
【C语言】自定义类型初阶知识点
【C语言】浮点型在内存的存储
Mux256to1v,Hadd,Fadd
[fishing artifact] UI library second low code tool - form part (II) sub control
how to use culasLt
第一部分—C语言基础篇_4. 程序流程结构
【C语言】指针练习题2——笔试真题及解析
pip和pip3的区别用法详解
Es conceptual model and basic faults
第一部分—C语言基础篇_3. 运算符与表达式