Perform multiplication by a number. Multiplication is defined as
x(a + bi) = ax + bxi

Declaration Syntax
public static Complex operator *(
double LeftSide,
Complex RightSide
)
Public Shared Operator * ( _
LeftSide As Double, _
RightSide As Complex _
) As Complex
public:
static Complex^ operator *(
double LeftSide,
Complex^ RightSide
)

Parameters
- LeftSide (Double)
- The left hand side of the multiplication operation
- RightSide (Complex)
- The right hand side of the multiplication operation

Return Value
The result of the multiplication
Assembly:
Cove.ClassicalUtilities (Module: Cove.ClassicalUtilities) Version: 1.0.0.0 (1.0.0.0)