fma
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
float fmaf( float x, float y, float z ); |
||
double fma( double x, double y, double z ); |
||
long double fmal( long double x, long double y, long double z ); |
||
的FMA功能计算(x*y) + z,四舍五入为一个三元操作,根据
原文:
The fma functions compute (x*y) + z, rounded as one ternary operation, according to the
舍入模式,其特征在于由值FLT_ROUNDS.
原文:
rounding mode characterized by the value of FLT_ROUNDS.
[编辑] 参数
x, y, z | - | 浮点值
|
[编辑] 返回值
(x*y) + z,四舍五入为一个三元操作
原文:
(x*y) + z, rounded as one ternary operation
[编辑] 另请参阅
(C99) |
签署剩余的除法运算 原文: signed remainder of the division operation (函数) |
(C99) |
签署其余部分以及最后三个位的除法运算 原文: signed remainder as well as the three last bits of the division operation (函数) |
C++ documentation for fma
|