is_lower_triangular¶ mdcraft.algorithm.utility.is_lower_triangular(matrix: ndarray[float]) → bool[source]¶ Checks if a matrix is lower triangular. Parameters: matrixnumpy.ndarrayMatrix to check. Returns: is_lower_triangularboolWhether the matrix is lower triangular.