MicrOS
|
#include "../math.h"
Functions | |
double | fma (double x, double y, double z) |
Multiply-add. More... | |
double fma | ( | double | x, |
double | y, | ||
double | z | ||
) |
Multiply-add.
The fma 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. |