函数
<cmath> <ctgmath>

tan

double tan (double x);
     double tan  (double x);      float tanf (float x);long double tanl (long double x);
     double tan (double x);      float tan (float x);long double tan (long double x);
     double tan (double x);      float tan (float x);long double tan (long double x);     double tan (T x);           // additional overloads for integral types
计算正切
返回角度 x(以弧度为单位)的正切值。

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此函数在 <complex><valarray> 中被重载(请参阅 complex tanvalarray tan)。
在此头文件(<cmath>)中为 整型 提供了附加重载:这些重载在计算前有效地将 x 转换为 double(对 T 为任何整型类型定义)。

此函数也在 <complex><valarray> 中被重载(请参阅 complex tanvalarray tan)。

参数

x
表示角度的值,以弧度为单位。
弧度等于 180/PI

返回值

x 弧度的正切值。

示例

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

#define PI 3.14159265

int main ()
{
  double param, result;
  param = 45.0;
  result = tan ( param * PI / 180.0 );
  printf ("The tangent of %f degrees is %f.\n", param, result );
  return 0;
}

输出

The tangent of 45.000000 degrees is 1.000000.


另见