get.edges.spellmatrix {dynamicnetwork}R Documentation

get the edge timing information in spellmatrix form

Description

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.

Usage

get.edges.spellmatrix(net)

Arguments

net a dynamic network

Value

a two column matrix of valid intervals

Author(s)

skyebend@skyeome.net

References

~put references to the literature/web site here ~

See Also

get.spells.for

Examples

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);

[Package dynamicnetwork version 0.0-4 Index]