determinant()
La función en lenguaje R es una función genérica que devuelve por separado el módulo del determinante, opcionalmente en la escala logarítmica, y el signo del determinante.
Sintaxis: determinante(x, logaritmo = VERDADERO, …)
Parámetros:
x: array
logaritmo: si es VERDADERO (predeterminado) devuelve el logaritmo del módulo del determinante
Ejemplo 1:
# R program to illustrate # determinant function # Initializing a matrix with # 3 rows and 3 columns x <- matrix(c(3, 2, 6, -1, 7, 3, 2, 6, -1), 3, 3) # Getting the matrix representation x # Calling the determinant() function determinant(x)
Producción:
[, 1] [, 2] [, 3] [1, ] 3 -1 2 [2, ] 2 7 6 [3, ] 6 3 -1 $modulus [1] 5.220356 attr(, "logarithm") [1] TRUE $sign [1] -1 attr(, "class") [1] "det"
Ejemplo 2:
# R program to illustrate # determinant function # Initializing a matrix with # 2 rows and 2 columns x <- matrix(c(1, 2, 3, 4), 2, 2) # Getting the matrix representation x # Calling the determinant() function determinant(x, logarithm = FALSE)
Producción:
[, 1] [, 2] [1, ] 1 3 [2, ] 2 4 $modulus [1] 2 attr(, "logarithm") [1] FALSE $sign [1] -1 attr(, "class") [1] "det"
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA