ComplexAddition Operator (Double, Complex) |
Computes the sum of a real and a complex 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 sum a + z.
See Also