Global

Type Definitions

LU

Type:
  • Object
Properties:
Name Type Description
L Array.<Array.<number>> Lower triangular matrix from decomposition
U Array.<Array.<number>> Upper triangular matrix from decomposition
Source:

MatrixDescription

Type:
  • Object
Properties:
Name Type Description
row number Numbers of rows in the given matrix (Do not use if not valid)
col number Number of columns in the given matrix (Do not use if not valid)
square boolean Boolean representing if the matrix is square
identity boolean Boolean representing if the matrix is the identity matrix
valid boolean Boolean representing if the matrix is valid
Source: