Matrix Operators |
The Matrix type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | Addition(Double, Matrix) |
Adds a scalar to each element of the matrix and returns the result.
|
![]() ![]() | Addition(Matrix, Matrix) |
Adds two matrices together and returns the result.
|
![]() ![]() | Addition(Matrix, Double) |
Adds a scalar to each element of the matrix and returns the result.
|
![]() ![]() | Division |
Divides each element of the matrix by given scalar and returns
the result.
|
![]() ![]() | Multiply(Double, Matrix) |
Multiplies the matrix by given scalar and returns the result.
|
![]() ![]() | Multiply(Matrix, Matrix) |
Multiplies two matrices and returns the result.
|
![]() ![]() | Multiply(Matrix, Vector) |
Multiplies the matrix by the column vector.
|
![]() ![]() | Multiply(Matrix, Double) |
Multiplies the matrix by given scalar and returns the result.
|
![]() ![]() | Multiply(Vector, Matrix) |
Multiplies the row vector by the matrix.
|
![]() ![]() | Subtraction(Double, Matrix) |
Subtracts each element of the matrix from the scalar and returns
the result.
|
![]() ![]() | Subtraction(Matrix, Matrix) |
Subtracts the one matrix from another and returns the result.
|
![]() ![]() | Subtraction(Matrix, Double) |
Subtracts the scalar from each element of the matrix and returns
the result.
|
![]() ![]() | UnaryNegation |
Negates each element of the matrix.
|
![]() ![]() | UnaryPlus |
Returns a Matrix containing the same values of right.
|