laplacian.m
来自「This toolbox contains Matlab code for se」· M 代码 · 共 24 行
M
24 行
function L = laplacian(A);% LAPLACIAN : Laplacian matrix of a graph.%% L = laplacian(A) returns a matrix whose nonzero structure is that of A+A'% (including any explicit zeros in A) with all values -1,% plus a diagonal to make all row sums zero.% This is the Laplacian matrix of the graph, which is positive% semidefinite, with an eigenvalue 0 of multiplicity equal to% the number of connected components.%% See also FIEDLER, SPECPART.%% John Gilbert 9 March 1993% Copyright (c) 1990-1996 by Xerox Corporation. All rights reserved.% HELP COPYRIGHT for complete copyright and licensing notice.[n,m] = size(A);if n ~= m, error ('Matrix must be square.'), endL = - spones(A|A');L = L - diag(sum(L));if ~issparse(A) L = full(L);end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?