View source: R/CalculateLaplacian.R
CalculateLaplacian | R Documentation |
CalculateLaplacian(Adj)
Adj |
the adjacency matrix of network structure. |
L |
The Laplacian matrix for network structure. |
L_norm |
The symmetric normalized Laplacian matrix for network structure. |
## Using "ConstructNetwork" to genarate network
N <- 200
Adj <- ConstructNetwork(N, "BAN")
res <- CalculateLaplacian(Adj)
L <- res$L
L_norm <- res$L_norm
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.