sinh

Autres langues

Langue: ja

Autres versions - même langue

Version: 2002-07-27 (fedora - 25/11/07)

Section: 3 (Bibliothèques de fonctions)

名前

sinh, sinhf, sinhl - 双曲線正弦 (ハイパボリックサイン) 関数

書式

 #include <math.h>
 
 double sinh(double x);
 
float sinhf(float x);
long double sinhl(long double x);

-lm でリンクする。

説明

sinh() 関数は双曲線正弦 (ハイパボリックサイン) 関数の値を返す。 数学的には (exp(x) - exp(-x)) / 2 で定義されている。

準拠

SVr4, 4.3BSD, C89. float 版と long double 版は C99 の要求仕様である。

関連項目

acosh(3), asinh(3), atanh(3), cosh(3), csinh(3), tanh(3)