Ruby 矩阵 minor()函数
minor() 是Ruby中一个内置的方法,用于返回矩阵的一个部分。它可以通过获取开始行、结束行、开始列、结束列或者获取行和列的范围来返回矩阵。
语法 :mat1.minor(start_row, end_row, start_col, end_col) 或 mat1.minor(row1..row2, col1..col2)
参数 :该函数以两种方式接受参数,要么接受起始行、结束行、起始列或结束列,要么接受行和列的范围。
返回值 :它返回矩阵的部分。
例子 1 :
#Ruby program for minor() method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 0, 0 ], [ 2, 3, 0 ], [ 31, 18, 19 ]]
#Prints the section of matrix
puts mat1.minor(1, 2, 0, 2)
输出:
Matrix[[2, 3], [31, 18]]
例2 :
#Ruby program for minor() method in Matrix
#Include matrix
require "matrix"
#Initialize a matrix
mat1
= Matrix[[ 1, 0, 0 ], [ 2, 3, 0 ], [ 31, 18, 19 ]]
#Prints the section of matrix
puts mat1.minor(1..2, 0..2)
输出:
Matrix[[2, 3, 0], [31, 18, 19]]