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