当前位置: C语言 -- 标准库 -- <math.h> -- fmaf

fmaf函数


概要:
#include <math.h>
float fmaf(float x, float y, float z);

描述:

该函数计算表达式(x×y)+z的值,整个运算作为一个三元操作舍入:该函数(好像)以无限的精度计算值,并根据当前舍入模式一次舍入到结果格式。

该函数可能会发生范围错误(range error)


参数:
float x

参数为一个float类型的浮点数。

float y

参数为一个float类型的浮点数。

float z

参数为一个float类型的浮点数。


返回值:

函数返回(x×y)+z的值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数fmaf范例*/

#include <math.h>
#include <stdio.h>

int main(void)
{
    float x = 2.0f;
    float y = 2.5f;
    float z = 3.0f;

    printf("fmaf(%.2f,%.2f,%.2f) = %.2f\n", x, y, z, fmaf(x,y,z));

    return 0;
}

输出:

fmaf(2.00,2.50,3.00) = 8.00


相关内容:
fma double类型的浮点乘法加法函数。
fmal long double类型的浮点乘法加法函数。