

   CCoommbbiinnee RRoowwss iinnttoo aa MMaattrriixx

        rbind(...)

   VVaalluuee::

        `rbind' takes a sequence of vector and/or matrix argu-
        ments and combines them as the rows of a matrix.

        If there are several matrix arguments, they must all
        have the same number of columns and this will be the
        number of columns of the result.  If all the arguments
        are vectors, the number of columns in the result is
        equal to the length of the longest vector.  Values in
        shorter arguments are recycled to achieve this length.

        When the arguments consist of a mix of matrices and
        vectors the number of columns of the result is deter-
        mined by the number of columns of the matrix arguments.
        Any vectors have their values recycled or subsetted to
        achieve this length.

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

        `c', `cbind'.

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

        rbind(1,1:n)

