Ruby 矩阵 cofactor()函数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程