Can we compute the graph Laplacian matrix for a directed graph?
17 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Souarv De
am 16 Mär. 2022
Kommentiert: Souarv De
am 16 Mär. 2022
How to find graph laplacian matrix of a directed graph?
0 Kommentare
Akzeptierte Antwort
Christine Tobler
am 16 Mär. 2022
It depends how you want to define it, there is no one consistent definition of what the graph laplacian of a directed graph is. This wikipedia page https://en.wikipedia.org/wiki/Laplacian_matrix#Definitions_for_simple_graphs lists some options.
Weitere Antworten (1)
Bruno Luong
am 16 Mär. 2022
Bearbeitet: Bruno Luong
am 16 Mär. 2022
In this thread I give formula for graph, for digraph you just need to be careful about indegree or outdegree
% TMW example
s = [1 2 2 3 3 3 4 5 5 5 8 8 9];
t = [2 3 4 1 4 5 5 3 6 7 9 10 10];
G = digraph(s,t);
A = G.adjacency;
% Use Laplacian
Din = diag(sum(A,1)); % in degree matrix
Dout = diag(sum(A,2)); % in degree matrix
Lin = Din - A % laplacian matrix
Lout = Dout - A % laplacian matrix
Siehe auch
Kategorien
Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!