]> gitweb.michael.orlitzky.com - octave.git/blob - is_upper_triangular.m
Remove the step_size_positive_definite() function; it looks like it was added by...
[octave.git] / is_upper_triangular.m
1 function isUT = is_upper_triangular(A)
2 ## Returns true if ``A`` is upper triangular, false otherwise.
3 isUT = isequal(A, triu(A));
4 end