Learn R Programming

QuACN (version 1.8.0)

layerMatrix: Layer (sphere) matrix

Description

This method calculates the layer matrix, also known as sphere matrix, of a graph.

Usage

layerMatrix(g, dist=NULL)

Arguments

g
a graph as a graphNEL object.
dist
the pre-computed distance matrix of the graph. Will be calculated automatically if NULL.

Value

This method returns the layer (sphere) matrix of a graph. Each row of this matrix represents a vertex in the graph. The j-th column specifies the number of vertices in the j-sphere of this vertex.

References

E. V. Konstantinova, On some applications of information indices in chemical graph theory, in R. Ahlswede et al. (eds.), General Theory of Information Transfer and Combinatorics, LNCS, pp. 831-852, Springer, 2006

Examples

Run this code
set.seed(123)
g <- randomGraph(1:8, 1:5, 0.36, weights=FALSE)

layerMatrix(g)

Run the code above in your browser using DataLab