fma

From cppreference.com
< c‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
(C99)
(C99)
fma
(C99)
(C99)
(C99)
(C99)
(C99)(C99)(C99)
Exponential functions
(C99)
(C99)
(C99)
(C99)
Power functions
(C99)
(C99)
Trigonometric and hyperbolic functions
(C99)
(C99)
(C99)
Error and gamma functions
(C99)
(C99)
(C99)
(C99)
Nearest integer floating point operations
(C99)(C99)(C99)
(C99)
(C99)
(C99)(C99)(C99)
Floating point manipulation functions
(C99)(C99)
(C99)
(C99)
Classification
(C99)
(C99)
(C99)
(C99)
(C99)
(C99)
Macro constants
 
Defined in header <math.h>
float       fmaf( float x, float y, float z );
(since C99)
double      fma( double x, double y, double z );
(since C99)
long double fmal( long double x, long double y, long double z );
(since C99)

The fma functions compute (x*y) + z, rounded as one ternary operation, according to the rounding mode characterized by the value of FLT_ROUNDS.

[edit] Parameters

x, y, z - floating point values

[edit] Return value

(x*y) + z, rounded as one ternary operation

[edit] See also

(C99)
signed remainder of the division operation
(function)
(C99)
signed remainder as well as the three last bits of the division operation
(function)