  | NMathFunctionsPow(DoubleComplex, Int32) Method | 
            Calculates the result of raising a complex number to an integer power.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleComplex Pow(
	DoubleComplex c,
	int n
)
Public Shared Function Pow ( 
	c As DoubleComplex,
	n As Integer
) As DoubleComplex
public:
static DoubleComplex Pow(
	DoubleComplex c, 
	int n
)
static member Pow : 
        c : DoubleComplex * 
        n : int -> DoubleComplex Parameters
- c  DoubleComplex
 - A complex number.
 - n  Int32
 - An integer exponent.
 
Return Value
DoubleComplexThe result of raising 
c to the 
n power.
See Also