📜  红宝石 |矩阵 column()函数

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

红宝石 |矩阵 column()函数

column()是 Ruby 中的一个内置方法,它返回一个向量,该向量包含列号 col_num 中的所有元素。

示例 1

# Ruby program for column() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 =  Matrix[[1, 21], [31, 18]]  
  
# Prints the value of mat1.column
puts  mat1.column(1)

输出

Vector[21, 18]

示例 2

# Ruby program for column() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 = Matrix[[13, 1, 5], [12, 1, 5], [11, 2, 5]]  
  
# Prints the value of mat1.column
puts  mat1.column(1)

输出

Vector[1, 1, 2]