Raises a complex number to an arbitrary real power.

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

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

Parameters

z
Complex
The argument.
p
Double
The power.

Return Value

The value of zp.

See Also