tan,tanl
math.h:インデックス への移動
ヘッダーファイル
math.h
カテゴリ
演算ルーチン
プロトタイプ
double tan(double x);
long double tanl(long double x);
説明
タンジェントを計算します。
tan は,タンジェントを計算します。角度は,ラジアン単位で指定されます。
tanl は long double バージョンです。long double 引数を受け取り,long double の結果を返します。これらのルーチンのエラー処理は,_matherr および _matherrl 関数を使って変更できます。
戻り値
tan および tanl は,x のタンジェント(sin(x)/cos(x))を返します。
例
#include <stdio.h>
#include <math.h>
int main(void)
{
double result, x;
x = 0.5;
result = tan(x);
printf("The tan of %lf is %lf\n", x, result);
return 0;
}
移植性
POSIX | Win32 | ANSI C | ANSI C++ | |
---|---|---|---|---|
tan |
+ |
+ |
+ |
+ |
tanl |
+ |
+ |
+ |