Lap {simplifyNet} | R Documentation |
Find the graph Laplacian from a weighted adjacency matrix.
Lap(A)
A |
Weighted adjacency matrix. |
Intended as internal function.
Graph Laplacian, L
, of the class dgCMatrix.
Alexander Mercier
A = matrix(c(0,1,1,1,0,1,1,1,0), 3 ,3)
L = Lap(A)