ComplexAddition(Double, Complex) Operator |
Calculates the sum of the two numbers
Namespace: RelaxIS_SDK.libMathAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public static Complex operator +(
double c1,
Complex c2
)
Public Shared Operator + (
c1 As Double,
c2 As Complex
) As Complex
Dim c1 As Double
Dim c2 As Complex
Dim returnValue As Complex
returnValue = (c1 + c2)
Parameters
- c1 Double
- The first argument
- c2 Complex
- The second argument
Return Value
ComplexThe sum of the two numbers
See Also