📜  红宝石 |矩阵跟踪()函数

📅  最后修改于: 2022-05-13 01:55:36.374000             🧑  作者: Mango

红宝石 |矩阵跟踪()函数

trace()是 Ruby 中的一个内置方法,它返回跟踪,即矩阵的对角线元素的总和。

示例 1

# Ruby program for trace() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 = Matrix[[3, 12], [2, 8]]  
  
# Prints the trace
puts  mat1.trace()

输出

11

示例 2

# Ruby program for trace() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 = Matrix[[1, 0, 6], [6, 1, 7], [1, 2, 19]]   
  
# Prints the trace
puts  mat1.trace()

输出

21