ComplexMultiply Operator (Double, Complex) |
Multiplies a complex number by a real number.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static Complex operator *(
double a,
Complex z
)
Public Shared Operator * (
a As Double,
z As Complex
) As Complex
public:
static Complex operator *(
double a,
Complex z
)
static let inline (*)
a : float *
z : Complex : Complex
Parameters
- a
- Type: SystemDouble
The real number. - z
- Type: Meta.NumericsComplex
The complex number.
Return Value
Type:
ComplexThe product az.
See Also