Ruby 矩阵 row_vectors()函数
row_vectors() 是Ruby中的一个内置方法,用于返回代表矩阵中每一行的向量。
语法 : mat1.row_vectors()
参数 :该函数不需要任何强制参数。
返回值 : 它返回代表行的向量。
例子 1 :
# Ruby program for row_vectors() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[6, 432], [54, 323]]
# Prints the rows in vectors
puts mat1.row_vectors()
输出:
Vector[6, 432]
Vector[54, 323]
例2 :
# Ruby program for row_vectors() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 1, 1],[2, 2, 2],[3, 5, 6]]
# Prints the rows in vectors
puts mat1.row_vectors()
输出:
Vector[1, 1, 1]
Vector[2, 2, 2]
Vector[3, 5, 6]