Positions Of series Objects

DESCRIPTION:

Access the positions of series objects.

USAGE:

positions(object) 

REQUIRED ARGUMENTS:

object
object to find positions of.

VALUE:

the positions slot of object.

DETAILS:

This function can also be used on the left side of an assignment to set the positions of a series object.

SEE ALSO:

, , .

EXAMPLES:

x <- signalSeries(pos=1:10, data=11:20) 
positions(x) 
positions(x) <- 11:20