  | NMathFunctionsAtan2(FloatVector, FloatVector) Method | 
            Creates a new vector with the same size as a given vector, whose values
            are the result of applying the arctangent2 function to each element of
            the given vector.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatVector Atan2(
	FloatVector v,
	FloatVector w
)
Public Shared Function Atan2 ( 
	v As FloatVector,
	w As FloatVector
) As FloatVector
public:
static FloatVector^ Atan2(
	FloatVector^ v, 
	FloatVector^ w
)
static member Atan2 : 
        v : FloatVector * 
        w : FloatVector -> FloatVector Parameters
- v  FloatVector
 - A vector.
 - w  FloatVector
 - A vector.
 
Return Value
FloatVector
            A new vector with the same size as 
v, whose values are the 
            result of applying the arctangent2 function to each element of 
v.
            
Remarksu[i] = System.Math.Atan2(v[i])
See Also