Matrix Operators |
Name | Description | |
---|---|---|
Addition(Matrix, Matrix) | Creates a Matrix which is the sum of the two given matrices. The most efficient operation to do this is chosen through double dispatch based on the concrete types of the given matrices. | |
Addition(Matrix, Matrix3By3) |
Creates a Matrix which is the sum of the two given matrices.
| |
Addition(Matrix, Matrix6By6) |
Creates a Matrix which is the sum of the two given matrices.
| |
Addition(Matrix3By3, Matrix) |
Creates a Matrix which is the sum of the two given matrices.
| |
Addition(Matrix6By6, Matrix) |
Creates a Matrix which is the sum of the two given matrices.
| |
Multiply(Double, Matrix) |
Creates a new Matrix which has the value of the given matrix multiplied by the given factor.
| |
Multiply(Matrix, Matrix) | Creates a Matrix which is the linear algebra multiplication of the two given matrices. The most efficient operation to do this is chosen through double dispatch based on the concrete types of the given matrices. | |
Multiply(Matrix, Matrix3By3) | Creates a Matrix which is the linear algebra multiplication of the two given matrices. | |
Multiply(Matrix, Matrix6By6) | Creates a Matrix which is the linear algebra multiplication of the two given matrices. | |
Multiply(Matrix, Double) |
Creates a new Matrix which has the value of the given matrix multiplied by the given factor.
| |
Multiply(Matrix3By3, Matrix) | Creates a Matrix which is the linear algebra multiplication of the two given matrices. | |
Multiply(Matrix6By6, Matrix) | Creates a Matrix which is the linear algebra multiplication of the two given matrices. | |
Subtraction(Matrix, Matrix) | Creates a Matrix whose elements have the values of the elements of the minuend matrix subtracted by the elements of the subtrahend matrix. The most efficient operation to do this is chosen through double dispatch based on the concrete types of the given matrices. | |
Subtraction(Matrix, Matrix3By3) |
Creates a Matrix whose elements have the values of the elements of the minuend matrix
subtracted by the elements of the subtrahend matrix.
| |
Subtraction(Matrix, Matrix6By6) |
Creates a Matrix whose elements have the values of the elements of the minuend matrix
subtracted by the elements of the subtrahend matrix.
| |
Subtraction(Matrix3By3, Matrix) |
Creates a Matrix whose elements have the values of the elements of the minuend matrix
subtracted by the elements of the subtrahend matrix.
| |
Subtraction(Matrix6By6, Matrix) |
Creates a Matrix whose elements have the values of the elements of the minuend matrix
subtracted by the elements of the subtrahend matrix.
|