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