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

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

Syntax

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

Parameters

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

Return Value

The result of raising x to the n power.

See Also