📜  红宝石 |矩阵元素()函数

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

红宝石 |矩阵元素()函数

element()是 Ruby 中的一个内置方法,它返回存在于第 i 行和第 j 列交叉处的元素。

示例 1

# Ruby program for element() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 =  Matrix[[1, 21], [31, 18]]       
  
# prints the element at 1, 1
puts  mat1.element(1, 1)

输出

18

示例 2

# Ruby program for element() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 =  Matrix[[13, 1, 5], [12, 1, 5], [11, 2, 5]]    
  
# prints the element at 0, 1
puts  mat1.element(0, 1)

输出

1