Returns a complex number raised to the specified
power.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public static Complex<T> Pow(
Complex<T> z1,
Complex<T> z2
)
Public Shared Function Pow (
z1 As Complex(Of T),
z2 As Complex(Of T)
) As Complex(Of T)
public:
static Complex<T> Pow(
Complex<T> z1,
Complex<T> z2
)
static member Pow :
z1 : Complex<'T> *
z2 : Complex<'T> -> Complex<'T>
Parameters
- z1
- Type: Extreme.MathematicsComplexT
The base complex number. - z2
- Type: Extreme.MathematicsComplexT
The exponent complex number.
Return Value
Type:
ComplexTA complex number that equals
z1 raised to the power
z2.
This method requires that the operand type supports real arithmetic.
Numerical Libraries
Supported in: 6.0, 5.x
Reference