

   MMaattrriixx TTrraannssppoossee

        t(x)

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

        Given a matrix or `data.frame' `x', `t' returns the
        transpose (matrix or data.frame) of `x'.

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

        a <- matrix(1:30, 5,6)
        ta <- t(a) ##-- i.e.,  a[i,j] == ta[j,i] for all i,j :
        for(j in seq(ncol(a)))
          if(! a[,j] == ta[j,]) stop("wrong transpose")

