Calculates the result of raising a complex number to a real power.

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

Syntax

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

Parameters

c
Type: CenterSpace.NMath.Core..::.DoubleComplex
A complex number.
n
Type: System..::.Double
A real exponent.

Return Value

The result of raising c to the n power.

See Also