RectangularMatrix Operators and Type Conversions

Operators

Addition(RectangularMatrix, RectangularMatrix) Adds two real, rectangular matrices.
Division(RectangularMatrix, Double) Divides a real, rectangular matrix by a real constant.
(RectangularMatrix to SquareMatrix) Casts a rectangular matrix to a square matrix.
Multiply(Double, RectangularMatrix) Multiply a real, rectangular matrix by a real constant.
Multiply(RectangularMatrix, ColumnVector) Computes the product of a rectangular matrix and a column vector.
Multiply(RectangularMatrix, RectangularMatrix) Multiplies two real, rectangular matrices.
Subtraction(RectangularMatrix, RectangularMatrix) Subtracts two real, rectangular matrices.
UnaryNegation(RectangularMatrix) Negates a real, rectangular matrix.

See Also