atan2(x:y:result:)
Calculates the arctangent of each pair of elements in two vectors of single-precision values.
Declaration
static func atan2<T, U, V>(x: T, y: U, result: inout V) where T : AccelerateBuffer, U : AccelerateBuffer, V : AccelerateMutableBuffer, T.Element == Float, U.Element == Float, V.Element == FloatParameters
- x:
The first input vector.
- y:
The second vector.
- result:
The output vector.