augmentedZagreb: Augmented Zagreb index

Description Usage Arguments Value Author(s) References Examples

View source: R/augmentedZagreb.R

Description

This method calculates the augmented Zagreb index.

Usage

1

Arguments

g

a graph as a graphNEL object.

deg

the degree of each node of g. Will be automatically calculated if not supplied.

Value

This method returns the augmented Zagreb index of a graph as a double-precision floating point value.

Author(s)

Lavanya Sivakumar, Michael Schutte

References

B. Furtula and A. Graovac and D. Vukicevic: Augmented Zagreb Index. Journal of Mathematical Chemistry, 48:370-380, 2010.

Examples

1
2
3
4
5
6
7
8
library(graph)
set.seed(123)
g <- randomEGraph(as.character(1:8), 0.6)

# optional: pre-calculate degree of nodes in g
vec.degree <- graph::degree(g)

augmentedZagreb(g, vec.degree)

QuACN documentation built on May 2, 2019, 5:46 p.m.