  | NMathFunctionsAtan2(DoubleVector, DoubleVector) 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 vector with 
            the appropriate parameter from w.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleVector Atan2(
	DoubleVector v,
	DoubleVector w
)
Public Shared Function Atan2 ( 
	v As DoubleVector,
	w As DoubleVector
) As DoubleVector
public:
static DoubleVector^ Atan2(
	DoubleVector^ v, 
	DoubleVector^ w
)
static member Atan2 : 
        v : DoubleVector * 
        w : DoubleVector -> DoubleVector Parameters
- v  DoubleVector
 - Vector of values for the first parameter.
 - w  DoubleVector
 - Vector of values for the second parameter.
 
Return Value
DoubleVector
Remarksu[i] = System.Math.Atan2(v[i], w[i])
See Also