tan, tanf, tanh, tanhf
计算正切值 (tan 或 tanf) 或双曲正切 (tanh 或 tanhf)。
double tan(
double x
);
float tan(
float x
); // C++ only
long double tan(
long double x
); // C++ only
float tanf(
float x
);
double tanh(
double x
);
float tanh(
float x
); // C++ only
long double tanh(
long double x
); // C++ only
float tanhf(
float x
);
参数
- x
角度在弧度。
返回值
tan 返回 x正切值。 如果 x 大于或等于 263 或小于或等于 – 263,有效位丢失在结果中出现。
输入 |
SEH 异常 |
Matherr 异常 |
---|---|---|
± QNAN, IND |
无 |
_DOMAIN |
± ∞ (tan, tanf) |
INVALID |
_DOMAIN |
tanh 返回 x双曲正切值。 无错误返回。
备注
C++ 允许重载,因此,用户可以调用采用浮动或长的二进制文件类型 tan 和 tanh 的重载。 在 c. 程序, tan 和 tanh 函数始终采用并返回二进制文件。
要求
实例 |
必需的头 |
---|---|
tan, tanf, tanh, tanhf |
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 );
}