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++ ではオーバーロードが可能であるため、float または long double の値を受け取って返す tan および tanh のオーバーロードを呼び出すことができます。 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