Procedure call syntax:
#include <simdmath.h> |
vector double atand2(vector double x); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <atand2.h> |
vector double _atand2(vector double x); |
Parameters | |
x | input vector |
The atand2 function returns a vector of the arc tangents of the elements of x.
The function atand2 returns a double vector in which each element is defined as the arc tangent of the corresponding element of x. Each element in the return vector is expressed in radians. Return values will be within the interval .
If the corresponding elements of x and y are zero then the corresponding element of the result is undefined.
SPU only
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) atan functions.