Complex Conversion (Double to Complex) |
Converts the given double value into a complex value by setting the Real part to the value and imaginary part to zero
Namespace: RelaxIS_SDK.libMathAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public static implicit operator Complex (
double value
)
Public Shared Widening Operator CType (
value As Double
) As Complex
Dim input As Double
Dim output As Complex
output = CType(input, Complex)
Parameters
- value Double
- The source double value
Return Value
ComplexA complex representation of the double value
See Also