Click or drag to resize

Complex32FromPolarCoordinates Method

Creates a complex number from a point's polar coordinates.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Complex32 FromPolarCoordinates(
	float magnitude,
	float phase
)

Parameters

magnitude  Single
The magnitude, which is the distance from the origin (the intersection of the x-axis and the y-axis) to the number.
phase  Single
The phase, which is the angle from the line to the horizontal axis, measured in radians.

Return Value

Complex32
A complex number.
See Also