Home > @josh-brown/vector > isLowerTriangular
Tests if a matrix is lower-triangular.
Signature:
export declare function isLowerTriangular<S>(matrix: Matrix<S>): boolean;|
Parameter |
Type |
Description |
|---|---|---|
|
matrix |
Matrix<S> |
Returns:
boolean
true if the matrix is lower-triangular
A matrix is lower-triangular if all entries above the primary diagonal (those where i < j) are zero.