Perform subtraction between two matrices

C# | Visual Basic | Visual C++ |
public static ComplexMatrix operator -( ComplexMatrix LeftSide, ComplexMatrix RightSide )
Public Shared Operator - ( _ LeftSide As ComplexMatrix, _ RightSide As ComplexMatrix _ ) As ComplexMatrix
public: static ComplexMatrix^ operator -( ComplexMatrix^ LeftSide, ComplexMatrix^ RightSide )

- LeftSide (ComplexMatrix)
- Left side of the subtraction
- RightSide (ComplexMatrix)
- Right side of the subtraction

[Missing <returns> documentation for M:Cove.ClassicalUtilities.ComplexMatrix.op_Subtraction(Cove.ClassicalUtilities.ComplexMatrix,Cove.ClassicalUtilities.ComplexMatrix)]

Result of the subtraction

Exception | Condition |
---|---|
MatrixSizeMismatchException | Thrown when the matrix sizes
do not match for this operation |