MicrOS
|
#include "../math.h"
Functions | |
float | fmaf (float x, float y, float z) |
Multiply-add. More... | |
float fmaf | ( | float | x, |
float | y, | ||
float | z | ||
) |
Multiply-add.
The fmaf functions compute (x × y) + z, rounded as one ternary operation: they compute the value (as if) to infinite precision and round once to the result format, according to the current rounding mode. A range error may occur.
x | Value to be multiplied. |
y | Value to be multiplied. |
z | Value to be added. |