Table of Contents
Previous Section Next Section

asinh

#include <math.h>float asinhf(float arg);double asinh(double arg);
long double asinhl(long double arg);

asinh( ), asinhf( ), and asinl( ) were added by C99.

The asinh( ) family of functions returns the arc hyperbolic sine of arg.

Related functions are acosh( ), atanh( ), sinh( ), cosh( ), and tanh( ).


Table of Contents
Previous Section Next Section