Ruby 矩阵 tr()函数

Ruby 矩阵 tr()函数

tr() 是Ruby中的一个内置方法,用于返回轨迹,即矩阵的对角线元素之和。

语法 :mat1.tr()

参数 :该函数需要返回矩阵的轨迹。

返回值 :它返回轨迹。

例子 1 :

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

输出:

11

例2 :

# Ruby program for tr() 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.tr()

输出:

21

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程