

   VVeeccttoorr MMeerrggiinngg

        append(x, values, after=length(x))

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

          x: the vector to be modified.

     values: to be included in the modified vector.

      after: a subscript, after which the values are to be
             appended.

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

        A vector containing the values in `x' with the elements
        of `values' appended after the specified element of
        `x'.

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

        all(append(1:5, 0:1, after=3) ==
            append(1:3, c(0:1, 4:5)))

