Description Usage Arguments Value Author(s) References Examples
View source: R/modifiedZagreb.R
This method calculates the modified Zagreb index.
1 | modifiedZagreb(g, deg = NULL)
|
g |
a graph as a graphNEL object. |
deg |
the degree of each node of g. Will be automatically calculated if not supplied. |
This method returns the modified Zagreb index of a graph as a double-precision floating point value.
Lavanya Sivakumar, Michael Schutte
S. Nikolic and G. Kovacevic and A. Milicevic and N. Trinajstic: The Zagreb Indices 30 Years After. Croatica Chemica Acta, 76:113-124, 2003
1 2 3 4 5 6 7 8 | library(graph)
set.seed(123)
g <- randomEGraph(as.character(1:9), 0.5)
# optional: pre-calculate degree of nodes in g
vec.degree <- graph::degree(g)
modifiedZagreb(g, vec.degree)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.