ffma ( x y z -- double )


Vocabulary
math.libm

Inputs
xa real
ya real
za real


Outputs
doublea real


Word description
Calls the fma function from the C standard library to compute the 'fused-multiply-add' result of (x * y) + z. User code should call fma instead.

Definition