powered by
Determine if a matrix is lower triangular.
is.tril(x)
Logical indicating whether the given matrix is lower triangular.
A matrix.
m <- mat("1, 0, 0, 0; -1, 1, 0, 0; -2, -2, 1, 0; -3, -3, -3, 1") is.tril(m) is.tril(eye(3, 5))
Run the code above in your browser using DataLab