资源简介
This code contains the simulation of consensus in multi agent system control system.
代码片段和文件信息
%==============
%2016.4.2
%===============
function consensus
clc
clear
%%begin
N=input(‘请输入N的值:‘);
a=cell(NN);%创建一个空的N*N矩阵
X=cell(1N);
Y=cell(1N);
d=cell(1N);
B=round(rand(NN));%由rand函数产生随机数并四舍五入
A=tril(B-1)+triu(B‘0);%产生N*N对称矩阵
L=diag(sum(A2))-A;%L=D-A
eig(L);%求L的全部特征值
for i=1:N
X{1i}=i;
Y{1i}=0;
end
for I=1:N
d{1I}=[];
end
T0=0;
n=[];
for k=1:1:1200
for j=1:N
b=0;
for m=1:N
b=b+A(jm)*(Y{1m}-Y{1j});%公式(2)累加
end
相关资源
- multiimagepocs 对多帧图像进行超分辨率
- multifractal-compute 用MATLAB编写的图象多
- Cellular-Neural-Network 细胞神经网络(C
- DFIG_control_strategy 双馈发电机的控制策
- PIDNN 将人工神经网络用于PID参数调节
- DEAD-beat-microprocessor-control--
- wsn-simulation-in-matlab
- UAV-Flight-Control-System :对某型无人机的
- A-Multi-UAV-Simulation-for-Formation 对无人机
- OptimalControlOfWindPowerGeneration 《风力发
- robust-control-of-permanentmagnet 以电动小汽
- neural-network-of-multi-sensor 基于模糊神经
- cn551524 微型光伏并网逆变器
- Fuzzy-PI-control-of-PMSM 控制系统采用经典
- PMSM-DTC-Ccontrol 永磁同步电机直接转矩
- GA-pareto 遗传算法的多目标优化算例
- Multi-Agent-Particle-Swarm-Algorithm 结合多智
- Control-Strategy 。归纳和讨论了智能微电
-
FRSR 实现文献‘Fast and robust multif
r -
multiple_ob
ject_tracking(3D) 多目标跟 - PSO_Load-Frequency-Control
- pso--PID 基于粒子群算法的PID控制器优
- test-one 语音识别
- droop_control 微电网中下垂控制的Mtala
- multifractal 多重分形谱的算法的matlab实
- multi-target-tracking 多目标跟踪的主程序
- single_node_multi_node 认知无线电中基于能
- getMultiPeaks 从图像中提取曲线
- Multi-agent-formation 可以实现多智能体编
- mmcsevenlevel
评论
共有 条评论