Return the directed Laplacian matrix of G.
The graph directed Laplacian is the matrix
where is the identity matrix, is the transition matrix of the graph, and a matrix with the Perron vector of in the diagonal and zeros elsewhere.
Depending on the value of walk_type, can be the transition matrix induced by a random walk, a lazy random walk, or a random walk with teleportation (PageRank).
Parameters : | G : DiGraph
nodelist : list, optional
weight : string or None, optional (default=’weight’)
walk_type : string or None, optional (default=None)
alpha : real
|
---|---|
Returns : | L : NumPy array
|
Raises : | NetworkXError :
NetworkXNotImplemnted :
|
See also
Notes
Only implemented for DiGraphs
References
[R293] | Fan Chung (2005). Laplacians and the Cheeger inequality for directed graphs. Annals of Combinatorics, 9(1), 2005 |