IComplexOperations<T, U>.FromPolar Method

Constructs a complex number from polar components.

Definition

Namespace: Extreme.Mathematics.Generic
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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