Calculates the complex argument of a vector.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatVector Arg(
	FloatVector v
)
Visual Basic (Declaration)
Public Shared Function Arg ( _
	v As FloatVector _
) As FloatVector
Visual C++
public:
static FloatVector^ Arg(
	FloatVector^ v
)

Parameters

v
Type: CenterSpace.NMath.Core..::.FloatVector
A vector.

Return Value

Since there is no imaginary part, this method simply returns the given vector, v.

See Also