Returns the Complex x raised to the Complex y power.

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

Syntax

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

Parameters

x
Type: Imsl.Math..::.Complex
A Complex object.
y
Type: Imsl.Math..::.Complex
A Complex object.

Return Value

A newly constructed Complex initialized to x^y.

Remarks

The value of Pow is defined in terms of the functions Exp and Log, by {\rm pow}(x,y) = \exp(y \log(x)).

See Also