bandwidth {RBGL} | R Documentation |
Compute bandwidth for an undirected graph
bandwidth(g)
g |
an instance of the graph class with edgemode
“undirected” |
The bandwidth of an undirected graph G=(V, E) is the maximum distance between two adjacent vertices. See documentation on bandwidth in Boost Graph Library for more details.
bandwidth |
the bandwidth of the given graph |
Li Long <li.long@isb-sib.ch>
Boost Graph Library by Siek et al.
coex <- fromGXL(file(system.file("XML/dijkex.gxl",package="RBGL"), open="r")) coex <- ugraph(coex) bandwidth(coex)