El det() es un método incorporado en Ruby devuelve el determinante de la array dada
Sintaxis : mat1.det()
Parámetros : La función no acepta ningún parámetro.
Valor devuelto : Devuelve el determinante de la array dada.
Ejemplo 1 :
# Ruby program for det() method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[1, Complex(2, 1)], [Complex(8, -9), 18]] # prints the determinant puts mat1.det()
Salida :
-7+10i
Ejemplo 2 :
# Ruby program for det() method in Matrix # Include matrix require "matrix" # Initialize a matrix mat1 = Matrix[[1, 1, 5], [4, 1, 5], [11, 2, 12]] # prints the determinant puts mat1.det()
Salida :
-6