Perform addition between two matrices of equal size

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)
- The left side of the addition
- RightSide (ComplexMatrix)
- The right side of the addition

The result of the addition

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