Description Usage Arguments Value Author(s) References Examples
View source: R/graphVertexComplexity.R
This method calculates the Graph Vertex Complexity.
1 | graphVertexComplexity(g, dist = NULL)
|
g |
a graph as a graphNEL object. |
dist |
the distance matrix of the graph. If the parameter is empty the distance matrix will be calculated within the function. |
This method returns the Graph Vertex Complexity.
Laurin Mueller
C. Raychaudhury, S. K. Ray, J. J. Ghosh, A. B. Roy, and S. C. Basak, Discrimination of Isomeric Structures using Information Theoretic Topological Indices, Journal of Computational Chemistry, vol. 5, pp. 581-588, 1984.
1 2 3 4 5 | library(RBGL)
set.seed(123)
g <- randomGraph(1:8, 1:5, 0.36, weights=FALSE)
graphVertexComplexity(g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.