Meta.Numerics Library
Multiply Operator
Meta.NumericsMeta.NumericsComplexMultiply(Complex, Complex)
Multiplies two complex numbers.
Declaration Syntax
C#Visual BasicVisual C++F#
public static Complex operator *(
	Complex z1,
	Complex z2
)
Public Shared Operator * ( _
	z1 As Complex, _
	z2 As Complex _
) As Complex
public:
static Complex operator *(
	Complex z1, 
	Complex z2
)
static let inline(*)
        z1:Complex * 
        z2:Complex  : Complex
Parameters
z1 (Complex)
The first complex number.
z2 (Complex)
The second complex number.
Return Value
The product of the two complex numbers.