https://github.com/cran/pracma
Raw File
Tip revision: 63e8a52ae6668e736720c89691352d6dc3bc9eb1 authored by HwB on 17 January 2012, 00:00:00 UTC
version 0.9.6
Tip revision: 63e8a52
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