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

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

- LeftSide (ComplexMatrix)
- The left side of the multiplication

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