Complex<T>.ExpI Method

Evaluates the exponential function for an imaginary argument.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static Complex<T> ExpI(
	T angle
)

Parameters

angle  T
The imaginary part of the complex number.

Return Value

Complex<T>
A complex number of unit length with argument equal to angle.

Remarks

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.

See Also