Procedure call syntax:
#include <simdmath.h> |
vector float negatef4(vector float x); |
Link with -lsimdmath |
Inline call syntax:
#include <simdmath.h> |
#include <negatef4.h> |
vector float _negatef4(vector float x); |
Parameters | |
x | input vector |
The negatef4 function returns a vector of the corresponding elements of x in which each element has its sign negated.
The function negatef4 returns a float vector in which each element is defined as the negation of the corresponding element of x.
SPU and PPU
SIMD Math library specification for the Cell Broadband Engineā¢ Architecture.
Basis
ISO9899 (C99) negate functions.