The MatrixT type exposes the following members.
Operators | Name | Description |
---|
  | Addition(T, MatrixT) |
Adds a scalar to each element of the matrix.
|
  | Addition(MatrixT, T) |
Adds a scalar to each element of the matrix.
|
  | Addition(MatrixT, MatrixT) |
Adds two matrices together and returns the results.
|
  | Division(T, MatrixT) |
Divides a scalar with a matrix.
|
  | Division(MatrixT, T) |
Divides a matrix with a scalar.
|
  | DotDivide(MatrixT, MatrixT) | |
  | DotHat(MatrixT, T) | |
  | DotHat(MatrixT, MatrixT) | |
  | DotMultiply(MatrixT, MatrixT) | |
  | DotPercent(MatrixT, MatrixT) | |
  | Modulus(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.
|
  | Modulus(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.
|
  | Modulus(MatrixT, MatrixT) |
Computes the pointwise remainder (% operator), where the result has the sign of the dividend,
of each element of two matrices.
|
  | Multiply(T, MatrixT) |
Multiplies a Matrix by a constant and returns the result.
|
  | Multiply(MatrixT, T) |
Multiplies a Matrix by a constant and returns the result.
|
  | Multiply(MatrixT, MatrixT) |
Multiplies two matrices.
|
  | Multiply(MatrixT, VectorT) |
Multiplies a Matrix and a Vector.
|
  | Multiply(VectorT, MatrixT) |
Multiplies a Vector and a Matrix.
|
  | Subtraction(T, MatrixT) |
Subtracts each element of a matrix from a scalar.
|
  | Subtraction(MatrixT, T) |
Subtracts a scalar from each element of a matrix.
|
  | Subtraction(MatrixT, MatrixT) |
Subtracts two matrices together and returns the results.
|
  | UnaryNegation(MatrixT) |
Negates each element of the matrix.
|
  | UnaryPlus(MatrixT) |
Returns a Matrix containing the same values of rightSide.
|
Top
See Also