Click or drag to resize

FloatComplexFromPolar 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 FloatComplex FromPolar(
	float r,
	float theta
)

Parameters

r  Single
The magnitude.
theta  Single
The angle.

Return Value

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