

   CCrreeaattee AA VVeeccttoorr ooff SSeeqquueenncceess

        sequence(nvec)

   AArrgguummeennttss::

       nvec: an integer vector each element of which specifies
             the upper bound of a sequence.

   DDeessccrriippttiioonn::

        For each element of `nvec' the sequence `seq(nvec[i])'
        is created. These are appended and the result returned.

   SSeeee AAllssoo::

        `gl', `seq', `rep'.

   EExxaammpplleess::

        sequence(c(3,2))# the concatenated sequences 1:3 and 1:2.
        #> [1] 1 2 3 1 2

