get.edges.spellmatrix {dynamicnetwork} | R Documentation |
returns the edge timing information in the form of a two column matrix in which each row gives the start and end time for the corresponding edge id.
get.edges.spellmatrix(net)
net |
a dynamic network |
a two column matrix of valid intervals
skyebend@skyeome.net
~put references to the literature/web site here ~
dyn <- as.dynamic(network.initialize(5)); dyn <- add.edge.dynamic(dyn,0,1,2); dyn <- add.edge.dynamic(dyn,1,1,3); dyn <- add.edge.dynamic(dyn,2,1,4); dyn <- add.edge.dynamic(dyn,3,1,5); get.edges.spellmatrix(dyn);