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 の例外 |
---|---|---|
± QNANIND |
[none] |
_DOMAIN |
± ∞ (tan, tanf) |
INVALID |
_DOMAIN |
tanh は x のハイパーボリック タンジェントを返します。エラーの戻り値はありません。
解説
C++ ではオーバーロードができるためユーザーが浮動か long double 型を受け取る tan と tanh のオーバーロードを呼び出します。C. のプログラムではtan と tanh の関数はを受け取り常に返します。
必要条件
ルーチン |
必須ヘッダー |
---|---|
tan, tanf, tanh, tanhf |
<math.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
使用例
// 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 );
}