Constructs a complex number from polar components.

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Shared Function FromPolar ( _
	modulus As Double, _
	argument As Double _
) As DoubleComplex
C#
public static DoubleComplex FromPolar (
	double modulus,
	double argument
)
C++
public:
static DoubleComplex FromPolar (
	double modulus, 
	double argument
)

Parameters

modulus (System.Double)
The modulus of the complex number.
argument (System.Double)
The argument of the complex number.

Return Value

The DoubleComplex with the specified modulus and argument.