Calculates the result of raising a complex number to an integer power.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleComplex Pow(
	DoubleComplex c,
	int n
)
Visual Basic (Declaration)
Public Shared Function Pow ( _
	c As DoubleComplex, _
	n As Integer _
) As DoubleComplex
Visual C++
public:
static DoubleComplex Pow(
	DoubleComplex c, 
	int n
)

Parameters

c
Type: CenterSpace.NMath.Core..::.DoubleComplex
A complex number.
n
Type: System..::.Int32
An integer exponent.

Return Value

The result of raising c to the n power.

See Also