[
top
|
up
]
Create A Vector of Sequences
Syntax
sequence(nvec)
Arguments
nvec
an integer vector each element of which specifies the upper bound of a sequence.
Description
For each element of
nvec
the sequence
seq(nvec[i])
is created. These are appended and the result returned.
See Also
gl
,
seq
,
rep
.
Examples
# return the concatenated sequences 1:3 and 1:2. > sequence(c(3,2)) [1] 1 2 3 1 2