ComplexMathPow Method (Double, Complex) |
Raises a real number to an arbitrary complex power.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static Complex Pow(
double x,
Complex z
)
Public Shared Function Pow (
x As Double,
z As Complex
) As Complex
public:
static Complex Pow(
double x,
Complex z
)
static member Pow :
x : float *
z : Complex -> Complex
Parameters
- x
- Type: SystemDouble
The real base, which must be non-negative. - z
- Type: Meta.NumericsComplex
The complex exponent.
Return Value
Type:
ComplexThe value of x
z.
See Also