Complex<T>.Exp Method

Returns e raised to the specified power.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Complex<T> Exp(
	Complex<T> z
)

Parameters

z  Complex<T>
A complex number.

Return Value

Complex<T>
The number E raised to the specified power.

Remarks

The result is equivalent to constructing a new complex number in polar form with MagnitudeR.Exp(z.re) and Phasez.im.

This method requires that the operand type supports real arithmetic.

See Also