Complex<T>.FromPolar Method

Constructs a complex number from polar elements.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Complex<T> FromPolar(
	T modulus,
	T argument
)

Parameters

modulus  T
The modulus of the complex number.
argument  T
The argument of the complex number.

Return Value

Complex<T>
The complex with the specified modulus and argument.

Remarks

This method requires that the operand type supports real arithmetic.

See Also