Click or drag to resize

MatrixT Operators

The MatrixT type exposes the following members.

Operators
 NameDescription
Public operatorStatic memberAddition(T, MatrixT) Adds a scalar to each element of the matrix.
Public operatorStatic memberAddition(MatrixT, T) Adds a scalar to each element of the matrix.
Public operatorStatic memberAddition(MatrixT, MatrixT) Adds two matrices together and returns the results.
Public operatorStatic memberDivision(T, MatrixT) Divides a scalar with a matrix.
Public operatorStatic memberDivision(MatrixT, T) Divides a matrix with a scalar.
Public operatorStatic memberDotDivide(MatrixT, MatrixT) 
Public operatorStatic memberDotHat(MatrixT, T) 
Public operatorStatic memberDotHat(MatrixT, MatrixT) 
Public operatorStatic memberDotMultiply(MatrixT, MatrixT) 
Public operatorStatic memberDotPercent(MatrixT, MatrixT) 
Public operatorStatic memberModulus(T, MatrixT) Computes the pointwise remainder (% operator), where the result has the sign of the dividend, of the given dividend of each element of the matrix.
Public operatorStatic memberModulus(MatrixT, T) Computes the pointwise remainder (% operator), where the result has the sign of the dividend, of each element of the matrix of the given divisor.
Public operatorStatic memberModulus(MatrixT, MatrixT) Computes the pointwise remainder (% operator), where the result has the sign of the dividend, of each element of two matrices.
Public operatorStatic memberMultiply(T, MatrixT) Multiplies a Matrix by a constant and returns the result.
Public operatorStatic memberMultiply(MatrixT, T) Multiplies a Matrix by a constant and returns the result.
Public operatorStatic memberMultiply(MatrixT, MatrixT) Multiplies two matrices.
Public operatorStatic memberMultiply(MatrixT, VectorT) Multiplies a Matrix and a Vector.
Public operatorStatic memberMultiply(VectorT, MatrixT) Multiplies a Vector and a Matrix.
Public operatorStatic memberSubtraction(T, MatrixT) Subtracts each element of a matrix from a scalar.
Public operatorStatic memberSubtraction(MatrixT, T) Subtracts a scalar from each element of a matrix.
Public operatorStatic memberSubtraction(MatrixT, MatrixT) Subtracts two matrices together and returns the results.
Public operatorStatic memberUnaryNegation(MatrixT) Negates each element of the matrix.
Public operatorStatic memberUnaryPlus(MatrixT) Returns a Matrix containing the same values of rightSide.
Top
See Also