Complex<T>.ExpI Method

Evaluates the exponential function for an imaginary argument.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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