Click or drag to resize

Matrix Operators

The Matrix type exposes the following members.

Operators
  NameDescription
Public operatorStatic memberAddition(Double, Matrix)
Adds a scalar to each element of the matrix and returns the result.
Public operatorStatic memberAddition(Matrix, Matrix)
Adds two matrices together and returns the result.
Public operatorStatic memberAddition(Matrix, Double)
Adds a scalar to each element of the matrix and returns the result.
Public operatorStatic memberDivision
Divides each element of the matrix by given scalar and returns the result.
Public operatorStatic memberMultiply(Double, Matrix)
Multiplies the matrix by given scalar and returns the result.
Public operatorStatic memberMultiply(Matrix, Matrix)
Multiplies two matrices and returns the result.
Public operatorStatic memberMultiply(Matrix, Vector)
Multiplies the matrix by the column vector.
Public operatorStatic memberMultiply(Matrix, Double)
Multiplies the matrix by given scalar and returns the result.
Public operatorStatic memberMultiply(Vector, Matrix)
Multiplies the row vector by the matrix.
Public operatorStatic memberSubtraction(Double, Matrix)
Subtracts each element of the matrix from the scalar and returns the result.
Public operatorStatic memberSubtraction(Matrix, Matrix)
Subtracts the one matrix from another and returns the result.
Public operatorStatic memberSubtraction(Matrix, Double)
Subtracts the scalar from each element of the matrix and returns the result.
Public operatorStatic memberUnaryNegation
Negates each element of the matrix.
Public operatorStatic memberUnaryPlus
Returns a Matrix containing the same values of right.
Top
See Also