Procedure call syntax:
#include <simdmath.h> |
vector double nextafterd2(vector double x, vector double y); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <nextafterd2.h> |
vector double _nextafterd2(vector double x, vector double y); |
Parameters | |
x, y | input vectors |
The nextafterd2 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 nextafterd2 returns a double 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 only
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) nextafter functions.