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