インテルの算術ライブラリーは、次の双曲線関数をサポートします。
説明: acosh 関数は、x の逆双曲線余弦を返します。
errno: EDOM、x < 1 の場合
呼び出しインターフェイス:
double acosh(double x);
long double acoshl(long double x);
float acoshf(float x);
説明: asinh 関数は、x の逆双曲線正弦を返します。
呼び出しインターフェイス:
double asinh(double x);
long double asinhl(long double x);
float asinhf(float x);
説明: atanh 関数は、x の逆双曲線正接を返します。
errno: EDOM、x > 1 の場合
errno: ERANGE、x = 1 の場合
呼び出しインターフェイス:
double atanh(double x);
long double atanhl(long double x);
float atanhf(float x);
説明: cosh 関数は、x の双曲線余弦、(ex + e-x)/2 を返します。
errno: ERANGE、オーバーフロー状態の場合
呼び出しインターフェイス:
double cosh(double x);
long double coshl(long double x);
float coshf(float x);
説明: sinh 関数は、x の双曲線正弦、(ex - e-x)/2 を返します。
errno: ERANGE、オーバーフロー状態の場合
呼び出しインターフェイス:
double sinh(double x);
long double sinhl(long double x);
float sinhf(float x);