Learn R Programming

matlib (version 0.6.0)

tr: Trace of a Matrix

Description

Calculates the trace of a numeric matrix, i.e., the sum of its diagonal elements

Usage

tr(X)

Arguments

X
a numeric matrix

Value

  • a numeric value, the sum of diag(X)

Examples

Run this code
X <- matrix(1:9, 3, 3)
tr(X)

Run the code above in your browser using DataLab