Procedure call syntax:
#include <simdmath.h> |
vector float nextafterf4(vector float x, vector float y); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <nextafterf4.h> |
vector float _nextafterf4(vector float x, vector float y); |
Parameters | |
x, y | input vectors |
The nextafterf4 function returns a vector of the next representable value after each element of x in the direction of the corresponding element of y.
The function nextafterf4 returns a float vector in which each element is defined as the next representable value after the corresponding element of x in the direction of the corresponding element of y. If the element of x is equal to the corresponding element of y, the result is y.
SPU and PPU
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) nextafter functions.