wavefront {RBGL} | R Documentation |
Compute the i-th/max/average/rms wavefront for a graph
ith.wavefront(g, start) maxWavefront(g) aver.wavefront(g) rms.wavefront(g)
start |
a vertex of the graph class |
g |
an instance of the graph class |
Assorted functions on wavefront of a graph.
ith.wavefront |
wavefront of the given vertex |
maxWavefront |
maximum wavefront of a graph |
aver.wavefront |
average wavefront of a graph |
rms.wavefront |
root mean square of all wavefronts |
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")) ss <- 1 ith.wavefront(coex, ss) maxWavefront(coex) aver.wavefront(coex) rms.wavefront(coex)