Learn R Programming

mvinfluence (version 0.9.0)

tr: Matrix trace

Description

Calculates the trace of a matrix

Usage

tr(M)

Value

returns the sum of the diagonal elements of the matrix

Arguments

M

a matrix

Author

Michael Friendly

Details

For square, symmetric matrices, such as covariance matrices, the trace is sometimes used as a measure of size, e.g., in Pillai's trace criterion for a MLM.

Examples

Run this code

M <- matrix(sample(1:9), 3,3)
tr(M)

Run the code above in your browser using DataLab