Returns a complex number raised to the specified
integer power.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> Pow(
Complex<T> z,
int n
)
Public Shared Function Pow (
z As Complex(Of T),
n As Integer
) As Complex(Of T)
public:
static Complex<T> Pow(
Complex<T> z,
int n
)
static member Pow :
z : Complex<'T> *
n : int -> Complex<'T>
Parameters
- z
- Type: Extreme.MathematicsComplexT
The base complex number. - n
- Type: SystemInt32
The exponent.
Return Value
Type:
ComplexTA complex number that equals
z raised to the power
n.
This method requires that the operand type supports multiplication.
If n is less than zero, it must also support division.
Reference