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 ( _
	z1 As DoubleComplex, _
	z2 As DoubleComplex _
) As DoubleComplex
C#
public static DoubleComplex Pow (
	DoubleComplex z1,
	DoubleComplex z2
)
C++
public:
static DoubleComplex Pow (
	DoubleComplex z1, 
	DoubleComplex z2
)

Parameters

z1 (Extreme.Mathematics.DoubleComplex)
The base DoubleComplex number.
z2 (Extreme.Mathematics.DoubleComplex)
The exponent DoubleComplex number.

Return Value

A DoubleComplex number that equals z1 raised to the power z2.

Remarks

This method extends the Pow(Double, Double) method of the Math class to complex base and exponent.

See Also