ComplexPow(Double, Complex) Method |
Calculates the first number to the power of the second number
Namespace: RelaxIS_SDK.libMathAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public static Complex Pow(
double C1,
Complex C2
)
Public Shared Function Pow (
C1 As Double,
C2 As Complex
) As Complex
Dim C1 As Double
Dim C2 As Complex
Dim returnValue As Complex
returnValue = Complex.Pow(C1, C2)
Parameters
- C1 Double
- The first argument
- C2 Complex
- The second argument
Return Value
ComplexThe first number to the power of the second number
See Also