Multiple a matrix by the given value

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

- LeftSide (Double)
- The right side of the multiplication, a scalar
- RightSide (ComplexMatrix)
- The right side of the multiplication, a matrix

Result of the multiplication