ComplexPow Method (Complex, Double) |
Returns the Complex z raised to the x power, with a branch cut
for the first parameter (z) along the negative real axis.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex Pow(
Complex z,
double x
)
Public Shared Function Pow (
z As Complex,
x As Double
) As Complex
public:
static Complex Pow(
Complex z,
double x
)
static member Pow :
z : Complex *
x : float -> Complex
Parameters
- z
- Type: Imsl.MathComplex
A Complex object.
- x
- Type: SystemDouble
A double value.
Return Value
Type:
Complex
A newly constructed
Complex initialized to z to the power x.
See Also