ComplexMultiply Operator (Complex, Complex) |
Multiplies two complex numbers.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
- Type: Meta.NumericsComplex
The first complex number. - z2
- Type: Meta.NumericsComplex
The second complex number.
Return Value
Type:
ComplexThe product of the two complex numbers.
See Also