|  | DoubleComplexFromPolar Method | 
            Returns a complex number in Cartesian form from the supplied polar
            coordinates.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplex FromPolar(
	double r,
	double theta
)
Public Shared Function FromPolar ( 
	r As Double,
	theta As Double
) As DoubleComplex
public:
static DoubleComplex FromPolar(
	double r, 
	double theta
)
static member FromPolar : 
        r : float * 
        theta : float -> DoubleComplex Parameters
- r  Double
- The magnitude.
- theta  Double
- The angle.
Return Value
DoubleComplexA new DoubleComplex instance created from the supplied polar
            coordinates.
 See Also
See Also