Converts an [r,theta] pair to a complex number r * e^(i theta).

Namespace:  SingularSys.Jep.Types
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public static Complex PolarValueOf(
	JepDouble r,
	JepDouble theta
)
Visual Basic (Declaration)
Public Shared Function PolarValueOf ( _
	r As JepDouble, _
	theta As JepDouble _
) As Complex
Visual C++
public:
static Complex^ PolarValueOf(
	JepDouble^ r, 
	JepDouble^ theta
)

Parameters

r
Type: SingularSys.Jep.Types..::.JepDouble
The radius
theta
Type: SingularSys.Jep.Types..::.JepDouble
The angle

Return Value

The complex result.

See Also