Complex<T>.FromPolar Method

Constructs a complex number from polar elements.

Definition

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