Returns a DoubleComplex number raised to the specified power.

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

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

Parameters

z (Extreme.Mathematics.DoubleComplex)
The base DoubleComplex number.
a (System.Double)
The exponent.

Return Value

A DoubleComplex number that equals a raised to the power a.

Remarks

This method extends the Pow(Double, Double) method of the Math class to complex numbers.

See Also