Ruby 矩阵 cofactor()函数
cofactor() 是Ruby中的一个内置方法,用于返回给定索引的cofactor。
语法 :mat1.cofactor(i, j)
参数 :该函数需要两个索引i和j,它们的辅助因子将被返回。
返回值 :它返回给定指数的辅助因子。
例子 1 :
# Ruby program for cofactor() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 21], [31, 18]]
# Prints the value of mat1.cofactor()
puts mat1.cofactor(1,1)
输出:
1
例2 :
# Ruby program for cofactor() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
mat1 = Matrix[[1, 1, 5], [1, 1, 5], [1, 2, 5]]
# Prints the value of mat1.cofactor()
puts mat1.cofactor(1,2)
输出:
-1