Imaginary<T>.Exp2 Method

Returns 2 raised to the specified power.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
public static Complex<T> Exp2(
	Imaginary<T> z
)

Parameters

z  Imaginary<T>
An imaginary 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 Magnitude equal to 1 and Phasez.im.

This method requires that the operand type supports real arithmetic.

See Also