lower.tri()
La función en R Language se usa para devolver una array de valores lógicos con el triángulo inferior como VERDADERO.
Sintaxis: lower.tri(x, diag)
Parámetros:
x: Matrix object
diag: valor booleano para incluir diagonal
Ejemplo 1:
# R program to print the # lower triangle of a matrix # Creating a matrix mat <- matrix(c(1:9), 3, 3, byrow = T) # Calling lower.tri() Function # Excluding diagonal elements lower.tri(mat, diag = F)
Producción:
[, 1] [, 2] [, 3] [1, ] FALSE FALSE FALSE [2, ] TRUE FALSE FALSE [3, ] TRUE TRUE FALSE
Ejemplo 2:
# R program to print the # lower triangle of a matrix # Creating a matrix mat <- matrix(c(1:9), 3, 3, byrow = T) # Calling lower.tri() Function # including diagonal elements lower.tri(mat, diag = T)
Producción:
[, 1] [, 2] [, 3] [1, ] TRUE FALSE FALSE [2, ] TRUE TRUE FALSE [3, ] TRUE TRUE TRUE
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA