exp2f函数
概要:
#include <math.h> float exp2f(float x);
描述:
该函数是以为基数的指数函数,计算的值。
如果参数的值太大,将发生范围错误(range error)。
参数:
float x
参数为一个float类型的浮点数。
返回值:
函数返回的值。
范例:
|
|
输出:
The base-2 exponential of 2.000000 is 4.000000.
相关内容:
exp2 | double类型的以为基数的指数函数。 |
exp2l | long double类型的以为基数的指数函数。 |