Perform matrix multiplication

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

Result of the multiplication

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