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

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

Syntax

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

Parameters

c
Type: CenterSpace.NMath.Core..::.FloatComplex
A complex number.
n
Type: CenterSpace.NMath.Core..::.FloatComplex
A complex exponent.

Return Value

The result of raising c to the n power.

See Also