ASINH(3) Library Functions Manual ASINH(3)

asinhinverse hyperbolic sine function

#include <math.h>

double
asinh(double x);

long double
asinhl(long double x);

float
asinhf(float x);

The () function computes the inverse hyperbolic sine of the real argument

asinh(±0) returns ±0.

(±infinity) returns ±infinity.

If you need to apply the asinh() function to SIMD vectors or arrays, using the following functions provided by the Accelerate.framework may give significantly better performance:

#include <Accelerate/Accelerate.h>

vFloat (vFloat x);
void (float *y, const float *x, const int *n);
void (double *y, const double *x, const int *n);

acosh(3), atanh(3), exp(3), math(3)

The asinh() function conforms to ISO/IEC 9899:2011.

December 11, 2006 BSD 4.3