MatrixT Operators and Type Conversions

Operators

Addition(T, MatrixT) 
Addition(MatrixT, T) Returns computed sum of values.
Addition(MatrixT, MatrixT) Returns computed sum of values.
Division(MatrixT, T) 
Division(MatrixT, MatrixT) 
(T to MatrixT) Implicitly converts a Double to a ComplexNumber.
(MatrixT to T) Implicitly converts a ComplexNumber to a .NET Complex value.
Multiply(T, MatrixT) Returns computed product of values.
Multiply(MatrixT, T) Returns computed product of values.
Multiply(MatrixT, MatrixT) Returns computed product of values.
Subtraction(T, MatrixT) 
Subtraction(MatrixT, T) 
Subtraction(MatrixT, T) 
Subtraction(MatrixT, MatrixT) Returns computed difference of values.
UnaryNegation(MatrixT) Returns the negated value.

See Also