• 大小: 538B
    文件类型: .m
    金币: 2
    下载: 1 次
    发布日期: 2021-05-13
  • 语言: Matlab
  • 标签:

资源简介

平均一致性算法,matlab,对于简单一阶系统的一致性设计

资源截图

代码片段和文件信息

% L is strongly connected but not balanced
clear 
clc
close all
% adjacency matrix
A=[0 1 0
   0 0 1.5
   2 0 0];
D=diag(sum(A 2));
% Laplacian matrix
L=D-A;
% w is the positive column left eigenvector of Lsatisfying w1+w2+w3=1
w=pinv([L‘;1 1 1])*[0;0;0;1

评论

共有 条评论

相关资源