Procedure call syntax:
#include <simdmath.h> |
vector float atanhf4(vector float x); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <atanhf4.h> |
vector float _atanhf4(vector float x); |
Parameters | |
x | input vector |
The atanhf4 function returns the inverse hyperbolic tangents of the elements of x.
The function atanhf4 returns a float vector in which each element is defined as atanh(x).
On the SPU, if the absolute value of xi is equal to 1, the corresponding element of the result is returned as HUGE_VALF, and if xi is equal to -1, the corresponding element of the result is returned as -HUGE_VALF. In either case, no error is reported.
SPU and PPU
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) atanh functions.