IMSL C# Numerical Library

Complex.Pow Method (Complex, Complex)

Returns the Complex x raised to the Complex y power.

public static Complex Pow(
   Complex x,
   Complex y
);

Parameters

x
A Complex object.
y
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

Complex Class | Imsl.Math Namespace | Complex.Pow Overload List | Exp | Log