https://github.com/cran/pracma
Raw File
Tip revision: 71455748623ef69836470c75c5f9384f6e872d45 authored by HwB on 28 June 2011, 00:00:00 UTC
version 0.6-3
Tip revision: 7145574
mtrace.Rd
\name{mtrace}
\alias{mtrace}
\title{Matrix trace}
\description{
Sum of the main diagonal elements.
}
\usage{
mtrace(a)
}
\arguments{
  \item{a}{a square matrix}
}
\details{
Sums the elements of the main diagonal of areal or complrx square matrix.
}
\value{
scalar value
}
\note{
The corresponding function in Matlab/Octave is called trace(), but this in \R
has a different meaning.
}
\seealso{
\code{\link{mdiag}}, \code{\link{diag}}
}
\examples{
mtrace(matrix(1:16, nrow=4, ncol=4))
}
\keyword{ array }
back to top