You are viewing an old version of this page. Return to the latest version.
Difference between revisions of "Graph Laplacian"
(Graph Laplacian Page Added) (Tag: 2017 source edit) |
m (Normalized and Random-walk added) (Tag: Visual edit) |
||
Line 40: | Line 40: | ||
|} | |} | ||
+ | == Normalized Laplacian == | ||
+ | <math>L_n = D^{-\frac{1}{2}}LD^{-\frac{1}{2}}</math> | ||
+ | |||
+ | == Random-walk Laplacian == | ||
+ | <math>L_{rw} = D^{-1}L</math> | ||
==Keywords== | ==Keywords== | ||
Laplacian Matrix, GNN, Laplace Matrix, Degree Matrix | Laplacian Matrix, GNN, Laplace Matrix, Degree Matrix |
Revision as of 20:47, 17 February 2021
Graph Laplacian, (aka Laplace Matrix, Admittance Matrix, Kirchhoff Matrix, Discrete Laplacian, Laplace-Beltrami operator), is simply a matrix representation of a graph.
Laplacian Matrix can be computed as:
Where is Laplacian Matrix, is Degree Matrix and is Adjacency matrix.
Labelled graph | Degree matrix | Adjacency matrix | Laplacian matrix |
---|---|---|---|
Normalized Laplacian
Random-walk Laplacian
Keywords
Laplacian Matrix, GNN, Laplace Matrix, Degree Matrix