Perform multiplication where this matrix is considered the left side and
RightSide is considered the right. This matrix is replaced with the result, so
after performing x.MultipleAsLeftSide(y), x = x * y.

C# | Visual Basic | Visual C++ |
public ComplexMatrix MultiplyAsLeftSide( ComplexMatrix RightSide )
Public Function MultiplyAsLeftSide ( _ RightSide As ComplexMatrix _ ) As ComplexMatrix
public: ComplexMatrix^ MultiplyAsLeftSide( ComplexMatrix^ RightSide )

- RightSide (ComplexMatrix)
- The right side of the multiplication

A reference to the matrix after the multiplcation has been performed.