

   EExxttrraacctt EElleemmeennttss ooff aann AArrrraayy

        element(x, i)

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

          x: Array of arbitrary dimensionality.

          i: Vector of the same length as `x' has dimension .

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

        Returns the element of `x' specified by `i'.

   AAuutthhoorr((ss))::

        Friedrich Leisch

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

        Extract

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

        x <- array(1:20, dim=c(2,5,2))
        element(x, c(1,4,2))

