ILNumerics.Net - numeric computing for .NET
Phase angle of complex number

Namespace:  ILNumerics
Assembly:  ILNumerics.Net (in ILNumerics.Net.dll)
Version: 1.3.12.0 (0.9.28.0)

Syntax

C#
public static double Angle(
	complex input
)
Visual Basic (Declaration)
Public Shared Function Angle ( _
	input As complex _
) As Double
Visual C++
public:
static double Angle(
	complex input
)

Parameters

input
Type: ILNumerics..::.complex
input value

Return Value

The phase angle of the input

Remarks

For the result the Atan2 function of the Math class is used.

See Also