ACOSH

Section: Linux Programmer's Manual (3)
Updated: 2007-07-26
Index JM Home Page roff page
 

名前

acosh, acoshf, acoshl - 逆双曲線余弦(アークハイパボリックコサイン)関数  

書式

#include <math.h>

double acosh(double x);

float acoshf(float x);
long double acoshl(long double x);
-lm でリンクする。

glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):

acosh(), acoshf(), acoshl(): _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 500 || _ISOC99_SOURCE; または cc -std=c99  

説明

acosh() 関数は x の逆双曲線余弦(アークハイパボリックコサイン)を 計算する。 すなわち、その双曲線余弦(ハイパボリックコサイン)が x に なるような値である。 もし x が 1.0 より小さければ acosh() は not-a-number (NaN) を 返し、 errno が設定される。  

エラー

EDOM
x は範囲外である。
 

準拠

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

関連項目

asinh(3), atanh(3), cacosh(3), cosh(3), sinh(3), tanh(3)


 

Index

名前
書式
説明
エラー
準拠
関連項目

This document was created by man2html, using the manual pages.
Time: 04:31:31 GMT, November 19, 2007