Ruby 矩阵 row()函数
row() 是Ruby中的一个内置方法,它返回一个包含给定行数的所有元素的向量。
语法 :mat1.row(num)
参数 :该函数需要一个强制性的参数row,其元素将被返回到一个向量中。
返回值 :它返回一个包含 num 行中所有元素的向量。
例子 1 :
# Ruby program for row() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[6, 432], [54, 323]]
# Prints the 0th row
puts mat1.row(0)
输出:
Vector[6, 432]
例2 :
# Ruby program for row() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 1, 1],[2, 2, 2],[3, 5, 6]]
# Prints the 1sr row
puts mat1.row(1)
输出:
Vector[2, 2, 2]