Your Browser is not longer supported
Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...
{{viewport.spaceProperty.prod}}
acosh, acoshf, acoshl, asinh, asinhf, asinhl, atanh, atanhl, atanhf - inverse Hyperbelfunktionen
&pagelevel(4)&pagelevel
Definition | #include <math.h> double acosh (double x); double asinh (double x); double atanh (double x); C11 float acoshf (float x); float asinhf (float x); float atanhf (float x); long double acoshl (long double x); long double asinhl (long double x); long double atanhl (long double x); (Ende) |
Beschreibung | Diese Funktionen berechnen jeweils den inversen Hyperbel-Kosinus, den inversen Hyperbel-Sinus bzw. den inversen Hyperbel-Tangens zum Argument x. |
Returnwert | acosh(), acoshf(), und acoshl(): |
| Arch( x )
| bei Erfolg. |
| 0.0 | falls x < 1.0. errno wird gesetzt, um den Fehler anzuzeigen. |
| asinh(), asinhf(), asinhl(): |
| Arsh( x )
| Die Funktionen sind immer erfolgreich |
| atanh(), atanhf(), atanhl(): |
| Arth( x )
| bei Erfolg. |
| 0.0 | falls |x| > 1.0. errno wird gesetzt, um den Fehler anzuzeigen. |
Fehler | acosh(), acoshf() und acoshl() schlagen fehl, wenn gilt:
|
| EDOM
| x < 1.0. |
| atanh(), atanhf() und atanhl() schlagen fehl, wenn gilt:
|
| EDOM
| |x| > 1.0. |
Siehe auch | cosh(), sinh(), tanh(), math.h.
|