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