Complex<T>.Exp Method

Returns e raised to the specified power.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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