资源简介
平均一致性算法,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
- 上一篇:基于MATLAB的Prony方法实现
- 下一篇:最小二乘定位算法 Matlab
评论
共有 条评论