powered by
Returns TRUE if the given matrix is lower or upper triangular matrix.
TRUE
is.lower.tri(x, diag = FALSE) is.upper.tri(x, diag = FALSE)
Check if a matrix is lower or upper triangular. You can also include diagonal to the check.
a matrix of other R object with length(dim(x)) = 2.
length(dim(x)) = 2
logical. Should the diagonal be included?
lower.tri, upper.tri
lower.tri
upper.tri
x <- matrix(rnorm(10 * 3), ncol = 3) R <- chol(crossprod(x)) is.lower.tri(R) is.upper.tri(R)
Run the code above in your browser using DataLab