Skip to content

Latest commit

 

History

History
58 lines (28 loc) · 865 Bytes

File metadata and controls

58 lines (28 loc) · 865 Bytes

Home > @josh-brown/vector > isLowerTriangular

isLowerTriangular() function

Tests if a matrix is lower-triangular.

Signature:

export declare function isLowerTriangular<S>(matrix: Matrix<S>): boolean;

Parameters

Parameter

Type

Description

matrix

Matrix<S>

Returns:

boolean

true if the matrix is lower-triangular

Remarks

A matrix is lower-triangular if all entries above the primary diagonal (those where i < j) are zero.