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