muladd
muladd(x, y, z)
Combined multiply-add, computes x*y+z
in an efficient manner. This may on some systems be equivalent to x*y+z
, or to fma(x,y,z)
. muladd
is used to improve performance. See fma
.
Examples
See Also
User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.