matlib (version 0.9.2)

tr: Trace of a Matrix

Description

Calculates the trace of a square 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
# NOT RUN {
X <- matrix(1:9, 3, 3)
tr(X)

# }

Run the code above in your browser using DataCamp Workspace