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

frexpf函数


概要:
#include <math.h>
float frexpf(float value,int *exp);

描述:

该函数将浮点数分解为规格化小数(normalized fraction)和2的整数幂,并将整数存入参数exp指向的对象中。

value=x×2(*exp)


参数:
float value

参数为float类型的浮点数。

int *exp

参数为指向int类型对象的指针,指数数值将存入指针指向的对象中。


返回值:

函数返回xx位于[1/2,1)区间内或者等于0

如果参数value值等于0x(*exp)均为0

如果参数value不是浮点数,或者如果2的整数幂超出int类型所能表示的范围,结果是未指定的。


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

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

int main(void)
{
    float value = 5.0f;
    int exp;

    printf("The normalized fraction is %.6f.\n", frexpf(value,&exp));
    printf("The integral power is %d.\n", exp);

    return 0;
}

输出:

The normalized fraction is 0.625000.

The integral power is 3.


相关内容:
frexp double类型浮点数分解为规格化小数和2的整数幂的函数。
frexpl long double类型浮点数分解为规格化小数和2的整数幂的函数。