Click or drag to resize

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.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleVector Atan2(
	DoubleVector v,
	DoubleVector w
)

Parameters

v  DoubleVector
Vector of values for the first parameter.
w  DoubleVector
Vector of values for the second parameter.

Return Value

DoubleVector
Remarks
u[i] = System.Math.Atan2(v[i], w[i])
See Also