Evaluates the exponential function for an imaginary
argument.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public static Complex<T> ExpI(
T angle
)
Public Shared Function ExpI (
angle As T
) As Complex(Of T)
public:
static Complex<T> ExpI(
T angle
)
static member ExpI :
angle : 'T -> Complex<'T>
Parameters
- angle
- Type: T
The imaginary part of the complex
number.
Return Value
Type:
ComplexTA complex number of unit length with
argument equal to
angle.
The result is equivalent to constructing a
new complex number in polar form with
Magnitude equal to one and
Phase equal to angle.
This method requires that the operand type supports real arithmetic.
Numerical Libraries
Supported in: 6.0, 5.x
Reference