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