tan、tanf、tanl、tanh、tanhf、tanhl
计算正切值 (tan、tanf或 tanl),或者双曲线的正切值 (tanh、tanhf或 tanhl)。
double tan(
double x
);
float tan(
float x
); // C++ only
long double tan(
long double x
); // C++ only
float tanf(
float x
);
long double tanl(
long double x
);
double tanh(
double x
);
float tanh(
float x
); // C++ only
long double tanh(
long double x
); // C++ only
float tanhf(
float x
);
long double tanhl(
long double x
);
参数
- x
弧度上的角度。
返回值
tan 函数返回 x 的正切值。 如果 x 大于等于 263 或者小于等于– 263,将出现在结果中有效位丢失。
tanh 函数返回 x 的双曲线的正切值。 无错误返回。
输入 |
SEH 异常 |
Matherr 异常 |
---|---|---|
± QNAN,IND |
无 |
_DOMAIN |
± ∞ (tan, tanf) |
INVALID |
_DOMAIN |
备注
由于 C++ 允许重载,您可以调用 tan 和 tanh 的重载,该重载采用和返回 float 或 long double 值。 在 C 程序中,tan 和 tanh 始终采用并返回 double。
要求
例程 |
必需的标头 |
---|---|
tan, tanf, tanl, tanh, tanhf, tanhl |
<math.h> |
有关其他兼容性信息,请参见兼容性。
示例
// crt_tan.c
// This program displays the tangent of pi / 4
// and the hyperbolic tangent of the result.
//
#include <math.h>
#include <stdio.h>
int main( void )
{
double pi = 3.1415926535;
double x, y;
x = tan( pi / 4 );
y = tanh( x );
printf( "tan( %f ) = %f\n", pi/4, x );
printf( "tanh( %f ) = %f\n", x, y );
}
.NET Framework 等效项
请参见
参考
atan、atanf、atanl、atan2、atan2f、atan2l
cos、cosf、cosl、cosh、coshf、coshl