Ruby 矩阵 column_vectors()函数
column_vectors() 是Ruby中的一个内置方法,返回一个包含列的向量数组。
语法 : mat1.column_vectors()
参数 : 该函数不接受任何参数。
返回值 : 它返回一个包含所有列的向量数组。
例子 1 :
# Ruby program for column_vectors() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 21], [31, 18]]
# prints the columns
puts mat1.column_vectors
输出:
Vector[1, 31]
Vector[21, 18]
例2 :
# Ruby program for column_vectors() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[13, 1, 5], [12, 1, 5], [11, 2, 5]]
# prints the columns
puts mat1.column_vectors
输出:
Vector[13, 12, 11]
Vector[1, 1, 2]
Vector[5, 5, 5]