Returns e raised to the specified power.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Function Exp ( _ z As DoubleComplex _ ) As DoubleComplex |
| C# |
|---|
public static DoubleComplex Exp ( DoubleComplex z ) |
| C++ |
|---|
public: static DoubleComplex Exp ( DoubleComplex z ) |
Parameters
- z (Extreme.Mathematics.DoubleComplex)
- A DoubleComplex number.
Return Value
The number E raised to the specified power.
Remarks
The result is equivalent to constructing a
new complex number in polar form with ModulusMath.Exp(z._re) and Argumentz._im.
This method extends the Exp(Double) method of the Math class to complex numbers.