Returns the Complex z raised to the x power, with a branch cut for the first parameter (z) along the negative real axis.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

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

Parameters

z
Type: Imsl.Math..::.Complex
A Complex object.
x
Type: System..::.Double
A double value.

Return Value

A newly constructed Complex initialized to z to the power x.

See Also