Ruby 矩阵 find_element() 函数
find_index 是Ruby中一个内置的方法,它返回给定数字的索引位置。如果该元素出现了不止一次,那么将返回第一次出现的元素。如果该元素不存在,则返回nil。
语法 :mat1. find_index (element)
参数 :该函数需要在矩阵mat1中搜索一个元素。
返回值 :返回元素所在的行数和列数。
例子 1 :
# Ruby program for find_index method in Matrix
# Include matrix
require "matrix"
# Initializes the matrix
mat1 = Matrix[[12, 21], [31, 12]]
# Prints the index of 31
puts mat1.find_index(31)
输出:
1
0
例2 :
# Ruby program for find_index method in Matrix
# Include matrix
require "matrix"
# Initializes the matrix
mat1 = Matrix[[6, 7], [9, 10], [12, 4]]
# Prints the index of 12
puts mat1.find_index(12)
输出:
2
0