lower_triangular?()
Returns true is this is a lower triangular matrix.
# File lib/matrix.rb, line 624 def lower_triangular? each(:strict_upper).all?(&:zero?) end