IComplexOperations<T, U>.FromPolar Method

Constructs a complex number from polar components.

Definition

Namespace: Numerics.NET.Generic
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
T FromPolar(
	U magnitude,
	U phase
)

Parameters

magnitude  U
The modulus of the complex number.
phase  U
The argument of the complex number.

Return Value

T
The complex with the specified modulus and argument.

Remarks

This method requires that the real type supports real arithmetic.

See Also