Description Usage Arguments Details Value Note Author(s) References Examples
View source: R/distanceMatrix.R
This method calculates the distance Matrix of a given graph.
1 | distanceMatrix(g, keep.weights=FALSE)
|
g |
The graphNEL object for which the distance matrix will be calculated. |
keep.weights |
A flag indicating whether weights should be considered when performing the conversion (DEFAULT= FALSE). currently ignored, added for later development |
This method returns the distance Matrix of a given graph. If the graph is weighted it will be treated as if it was an unweighted graph.
A distance matrix with dimensions V(g) x V(g).
Currently we ignore the edge weight information when calculating the distance matrix. This will most likely change in future versions.
Laurin Mueller, Karl Kugler
F. Harary, Graph Theory, Addison-Wesley series in mathematics, Perseus Books, 1994.
1 2 3 4 5 | library(RBGL)
set.seed(123)
g <- randomGraph(1:8, 1:5, 0.36, weights=FALSE)
distanceMatrix(g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.