Rev 9940 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{seq}\title{Sequence Generation}\alias{seq}\alias{seq.default}\alias{:}\description{Generate regular sequences.}\synopsis{seq.default(from = 1, to = 1, by = ((to - from)/(length.out - 1)),length.out = NULL, along.with = NULL)}\usage{from:toseq(from, to)seq(from, to, by=)seq(from, to, length=)seq(along)}\arguments{\item{from}{starting value of sequence.}\item{to}{(maximal) end value of the sequence.}\item{by}{increment of the sequence.}\item{length}{desired length of the sequence.}\item{along}{take the length from the length of this argument.}}\details{The operator \code{:} and the first \code{seq(.)} form generate thesequence \code{from, from+1}, \ldots, \code{to}.\code{seq} is a generic function.The second form generates \code{from, from+by}, \ldots, \code{to}.The third generates a sequence of \code{length} equally spaced valuesfrom \code{from} to \code{to}.The last generates the sequence \code{1, 2}, \ldots,\code{length(along)}.If \code{from} and \code{to} are factors of the same length, then\code{from : to} returns the ``cross'' of the two.}\value{The result is of \code{mode} \code{"integer"} if \code{from} is(numerically equal to an) integer and \code{by} is not specified.}\seealso{\code{\link{rep}},\code{\link{sequence}},\code{\link{row}},\code{\link{col}}.}\examples{1:4pi:6 # float6:pi # integerseq(0,1, length=11)str(seq(rnorm(20)))seq(1,9, by = 2) # matchseq(1,9, by = pi)# stay belowseq(1,6, by = 3)seq(1.575, 5.125, by=0.05)stopifnot(3 == seq(3,3, by=pi),3 == seq(3,3.1,by=pi),seq(1,6,by=3) == c(1,4),seq(10,4.05,by=-3) == c(10,7))for (x in list(NULL, letters[1:6], list(1,pi)))cat("x=",deparse(x),"; seq(along = x):",seq(along = x),"\n")f1 <- gl(2,3); f1f2 <- gl(3,2); f2f1:f2 # a factor, the ``cross'' f1 x f2}\keyword{manip}