Evaluates the exponential function for an imaginary
argument.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
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.
Reference