wavefront                package:RBGL                R Documentation

_C_o_m_p_u_t_e _t_h_e _i-_t_h/_m_a_x/_a_v_e_r_a_g_e/_r_m_s _w_a_v_e_f_r_o_n_t _f_o_r _a _g_r_a_p_h

_D_e_s_c_r_i_p_t_i_o_n:

     Compute the i-th/max/average/rms wavefront for a graph

_U_s_a_g_e:

     ith.wavefront(g, start)
     maxWavefront(g)
     aver.wavefront(g)
     rms.wavefront(g)

_A_r_g_u_m_e_n_t_s:

   start: a vertex of the 'graph' class 

       g: an instance of the 'graph' class 

_D_e_t_a_i_l_s:

     Assorted functions on wavefront of a graph.

_V_a_l_u_e:

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

_A_u_t_h_o_r(_s):

     Li Long <li.long@isb-sib.ch>

_R_e_f_e_r_e_n_c_e_s:

     Boost Graph Library by Siek et al.

_S_e_e _A_l_s_o:

     'edgeConnectivity'

_E_x_a_m_p_l_e_s:

     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)

