Click or drag to resize

DoubleComplexFromPolar Method

Returns a complex number in Cartesian form from the supplied polar coordinates.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplex FromPolar(
	double r,
	double theta
)

Parameters

r  Double
The magnitude.
theta  Double
The angle.

Return Value

DoubleComplex
A new DoubleComplex instance created from the supplied polar coordinates.
See Also