tr()
R語言中的函數用於計算矩陣的跡。矩陣的跡是矩陣主對角線(左上至右下)上的值的總和。
用法: tr(x)
參數:
x:矩陣
範例1:
# R program to calculate
# trace of a matrix
# Loading library
library(psych)
# Creating a matrix
A = matrix(
c(6, 1, 1, 4, -2, 5, 2, 8, 7),
nrow = 3,
ncol = 3,
byrow = TRUE
)
A
# Calling tr() function
cat("Trace of A:\n")
tr(A)
輸出:
[, 1] [, 2] [, 3] [1, ] 6 1 1 [2, ] 4 -2 5 [3, ] 2 8 7 Trace of A: [1] 11
範例2:
# R program to calculate
# trace of a matrix
# Loading library
library(psych)
# Creating a matrix
A = matrix(c(1:9), 3, 3)
A
# Calling tr() function
cat("Trace of A:\n")
tr(A)
輸出:
[, 1] [, 2] [, 3] [1, ] 1 4 7 [2, ] 2 5 8 [3, ] 3 6 9 Trace of A: [1] 15
相關用法
- R語言 colSums()用法及代碼示例
- R語言 colMeans()用法及代碼示例
- R語言 is.matrix()用法及代碼示例
- R語言 data.matrix()用法及代碼示例
- R語言 as.matrix()用法及代碼示例
- R語言 acos()用法及代碼示例
- R語言 cos()用法及代碼示例
- R語言 cosh()用法及代碼示例
- R語言 sin()用法及代碼示例
- R語言 sinh()用法及代碼示例
- R語言 tanh()用法及代碼示例
- R語言 tan()用法及代碼示例
- R語言 asin()用法及代碼示例
- R語言 acos()用法及代碼示例
- R語言 atan()用法及代碼示例
- R語言 exp()用法及代碼示例
- R語言 factorial()用法及代碼示例
- R語言 choose()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 cumsum()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Calculate Trace of a Matrix in R Programming – tr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。