acosh / acoshf / acoshl
双曲線逆余弦を計算します。
[指定形式]
#include <math.h>
double acosh(double d);
float acoshf(float d);
long double acoshl(long double d);
[引数]
d 双曲線逆余弦を求める浮動小数点値
[戻り値]
正常:dの双曲線逆余弦値
異常:定義域エラーの時は、非数を返します
[備考]
dの値が1.0未満の時、定義域エラーになります。
acosh関数のリターン値の範囲は[0,+∞]です。