El cofactor() es un método incorporado en Ruby que devuelve el cofactor del índice dado.
Sintaxis : mat1.cofactor(i, j)
Parámetros : la función necesita dos índices i y j, cuyo cofactor se devolverá.
Valor devuelto : Devuelve el cofactor del índice dado.
Ejemplo 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)
Salida :
1
Ejemplo 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)
Salida :
-1