當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 tr()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Calculate Trace of a Matrix in R Programming – tr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。