
Last chance! 50% off unlimited learning
Sale ends in
graph.laplacian(graph, normalized=FALSE)
A normalized version of the Laplacian Matrix is similar: element (i,j) is 1 if i==j, -1/sqrt(d[i] d[j]) if i!=j and there is an edge between vertices i and j and 0 otherwise.
g <- graph.ring(10)
graph.laplacian(g)
graph.laplacian(g, norm=TRUE)
Run the code above in your browser using DataLab