expm1f函数
概要:
#include <math.h> float expm1f(float x);
描述:
该函数计算的值。
如果参数是正值且太大,将发生范围错误(range error)。如果参数是个小值,表达式预计比表达式更准确。
参数:
float x
参数为一个float类型的浮点数。
返回值:
函数返回的值。
范例:
|
|
输出:
The base-e exponential of 2.000000, minus 1 is 6.389056.
相关内容:
expm1 | double类型的返回的函数。 |
expm1l | long double类型的返回的函数。 |