atan2(x:y:)
Returns the arctangent of each pair of elements in two vectors of double-precision values.
Declaration
static func atan2<U, V>(x: U, y: V) -> [Double] where U : AccelerateBuffer, V : AccelerateMutableBuffer, U.Element == Double, V.Element == DoubleParameters
- x:
The first input vector.
- y:
The second input vector.