ComplexPow Method (Complex, Complex) |
Returns the Complex x raised to the Complex y power.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex Pow(
Complex x,
Complex y
)
Public Shared Function Pow (
x As Complex,
y As Complex
) As Complex
public:
static Complex Pow(
Complex x,
Complex y
)
static member Pow :
x : Complex *
y : Complex -> Complex
Parameters
- x
- Type: Imsl.MathComplex
A Complex object.
- y
- Type: Imsl.MathComplex
A Complex object.
Return Value
Type:
Complex
A newly constructed
Complex initialized to
.
Remarks
The value of Pow is defined in terms of the functions Exp and Log, by
.
See Also