sin - ライブラリコールの説明 - Linux コマンド集 一覧表
名前
sin, sinf, sinl - 正弦 (サイン) 関数
書式
#include <math.h>
double sin(double x);
float sinf(float x);
long double sinl(long double x);
-lm でリンクする。
説明
sin () 関数は x の正弦 (サイン) の値を返す。 ここで、x はラジアン単位で与えられる。
返り値
sin () 関数は -1 と 1 の間の値を返す。
準拠
SVr4, 4.3BSD, C89. float 版と "long double" 版は C99 の要求仕様である。