Provided by:
manpages-de-dev_0.10-1_all 
BEZEICHNUNG
acosh, acoshf, acoshl - inverse hyperbolic cosine function
"UBERSICHT
#include <math.h>
double acosh(double x);
float acoshf(float x);
long double acoshl(long double x);
Linken Sie mit der Option -lm.
Mit Glibc erforderliche Makros (siehe feature_test_macros(7)):
acosh():
_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 500 ||
_XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED || _ISOC99_SOURCE ||
_POSIX_C_SOURCE >= 200112L;
oder cc -std=c99
acoshf(), acoshl():
_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 600 ||
_ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L;
oder cc -std=c99
BESCHREIBUNG
The acosh() function calculates the inverse hyperbolic cosine of x;
that is the value whose hyperbolic cosine is x.
R"UCKGABEWERT
On success, these functions return the inverse hyperbolic cosine of x.
Falls x keine gultige Zahl (>>NaN<<) ist, wird >>NaN<< zuruckgegeben.
Wenn x gleich +1 ist, wird +0 zuruckgegeben.
Falls x plus unendlich ist, wird plus unendlich zuruckgegeben.
If x is less than 1, a domain error occurs, and the functions return a
NaN.
FEHLER
In math_error(7) erfahren Sie, wie Sie Fehler bei der Ausfuhrung
mathematischer Funktionen erkennen.
Die folgenden Fehler konnen auftreten:
Domain error: x is less than 1
errno wird auf EDOM gesetzt. Ein Floating-Point-Ausnahmefehler
(FE_INVALID) wird ausgelost.
KONFORM ZU
C99, POSIX.1-2001. Die Variante, die double zuruckgibt, ist auBerdem
konform zu SVr4, 4.3BSD, C89.
SIEHE AUCH
asinh(3), atanh(3), cacosh(3), cosh(3), sinh(3), tanh(3)
KOLOPHON
Diese Seite ist Teil der Veroffentlichung 3.32 des Projekts
Linux-man-pages. Eine Beschreibung des Projekts und Informationen, wie
Fehler gemeldet werden konnen, finden sich unter
http://www.kernel.org/doc/man-pages/.
"UBERSETZUNG
Die deutsche Ubersetzung dieser Handbuchseite wurde von
erstellt.
Diese Ubersetzung ist Freie Dokumentation; lesen Sie die GNU General
Public License Version 3 oder neuer bezuglich der Copyright-
Bedingungen. Es wird KEINE HAFTUNG ubernommen.
Wenn Sie Fehler in der Ubersetzung dieser Handbuchseite finden,
schicken Sie bitte eine E-Mail an <debian-l10n-
german@lists.debian.org>.
20. September 2010 ACOSH(3)