函数
<cmath> <ctgmath>

exp

double exp (double x);
     double exp  (double x);      float expf (float x);long double expl (long double x);
     double exp (double x);      float exp (float x);long double exp (long double x);
     double exp (double x);      float exp (float x);long double exp (long double x);     double exp (T x);           // additional overloads for integral types
计算指数函数
返回 x 的以 e 为底的指数函数,即 ex 次幂:ex

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
该函数在 <complex><valarray> 中被重载(参见 complex expvalarray exp)。
此头文件 (<cmath>) 中为整型提供了额外的重载:这些重载在计算前有效地将 x 转换为 double

该函数也在 <complex><valarray> 中被重载(参见 complex expvalarray exp)。

参数

x
指数的值。

返回值

x 的指数值。
如果结果的量级太大,无法用返回类型的值表示,函数将返回带有正确符号的 HUGE_VAL(或 HUGE_VALFHUGE_VALL),并发生上溢范围错误

如果发生上溢范围错误,全局变量 errno 会被设置为 ERANGE
如果发生上溢范围错误
- 并且 math_errhandling 设置了 MATH_ERRNO:全局变量 errno 被设置为 ERANGE
- 并且 math_errhandling 设置了 MATH_ERREXCEPT:将引发 FE_OVERFLOW

示例

1
2
3
4
5
6
7
8
9
10
11
12
/* exp example */
#include <stdio.h>      /* printf */
#include <math.h>       /* exp */

int main ()
{
  double param, result;
  param = 5.0;
  result = exp (param);
  printf ("The exponential value of %f is %f.\n", param, result );
  return 0;
}

输出

The exponential value of 5.000000 is 148.413159.


另见