Returns a complex number raised to the specified
integer 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> 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.
Numerical Libraries
Supported in: 6.0, 5.x
Reference