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