| | Name | Description |
|---|
  | Addition(Double, LMatrix) | Adds a scalar value to a lower triangular matrix. |
  | Addition(LMatrix, LMatrix) | Sums two lower matrices with the same size. |
  | Addition(LMatrix, RMatrix) | Adds a lower-triangular matrix and an upper-triangular one. |
  | Addition(LMatrix, Double) | Adds a scalar value to a lower triangular matrix. |
  | Division(DVector, LMatrix) | Solves the equation m*x = v for the vector x. |
  | Division(LMatrix, Double) | Divides a matrix by a scalar value. |
  | Division(Matrix, LMatrix) | Solves the equation m2*x = m1 for the matrix x. |
  | Equality(LMatrix, LMatrix) | Checks two matrices for equality. |
  | Equality(LMatrix, Matrix) | Checks two matrices for equality. |
  | Equality(LMatrix, RMatrix) | Checks two matrices for equality. |
  | (LMatrix to Matrix) |
Explicit conversion from a triangular matrix to a rectangular one.
|
  | (LMatrix to Double) |
Explicit conversion from a matrix to a onedimensional array.
|
  | (Matrix to LMatrix) |
Implicit conversion from a rectangular to a lower triangular matrix.
|
  | Inequality(LMatrix, LMatrix) | Checks two matrices for inequality. |
  | Inequality(LMatrix, Matrix) | Checks two matrices for inequality. |
  | Inequality(LMatrix, RMatrix) | Checks two matrices for inequality. |
  | Multiply(Double, LMatrix) | Multiplies a lower triangular matrix by a scalar value. |
  | Multiply(LMatrix, DVector) | Transform a vector using a matrix. |
  | Multiply(LMatrix, LMatrix) | Multiplies two lower-triangular matrices. |
  | Multiply(LMatrix, Matrix) | Multiplies a lower triangular matrix by a rectangular one. |
  | Multiply(LMatrix, RMatrix) | Multiplies a lower-triangular matrix with an upper-triangular one. |
  | Multiply(LMatrix, Double) | Multiplies a lower triangular matrix by a scalar value. |
  | Multiply(Matrix, LMatrix) | Multiplies a rectangular matrix by a lower triangular one. |
  | Multiply(RMatrix, LMatrix) | Multiplies an upper-triangular matrix with a lower-triangular one. |
  | Subtraction(Double, LMatrix) | Subtracts a lower triangular matrix from a scalar value. |
  | Subtraction(LMatrix, LMatrix) | Subtracts two lower matrices with the same size. |
  | Subtraction(LMatrix, RMatrix) | Subtracts an upper triangular matrix from a lower triangular one. |
  | Subtraction(LMatrix, Double) | Subtracts a scalar value from a lower triangular matrix. |
  | UnaryNegation(LMatrix) | Negates a lower matrix. |