Procedure call syntax:
#include <simdmath.h> |
vector double frexpd2(vector double x, vector signed long long *pexp); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <frexpd2.h> |
vector double _frexpd2(vector double x, vector signed long long *pexp); |
Parameters | |
x | input vector |
*pexp | pointer to output vector |
The frexpd2 function is used to split the values of the elements in x into a normalized fraction and an exponent. frexpd2 returns a vector of fractions and a vector of exponent integers in *pexp.
SPU only
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) frexp functions.