The Intel Math library supports the following hyperbolic functions:
Description: The acosh function returns the inverse hyperbolic cosine of x.
Calling interface:
long double acoshl(long
double x);
double acosh(double x);
float acoshf(float x);
Description: The asinh function returns the inverse hyperbolic sine of x.
Calling interface:
long double asinhl(long
double x);
double asinh(double x);
float asinhf(float x);
Description: The atanh function returns the inverse hyperbolic tangent of x.
Calling interface:
long double atanhl(long
double x);
double atanh(double x);
float atanhf(float x);
Description: The cosh function returns the hyperbolic cosine of x, (ex+e-x)/2.
Calling interface:
long double coshl(long double
x);
double cosh(double x);
float coshf(float x);
Description: The sinh function returns the hyperbolic sine of x, (ex-e-x)/2.
Calling interface:
long double sinhl(long double
x);
double sinh(double x);
float sinhf(float x);
Description: The sinhcosh function returns both the hyperbolic sine and hyperbolic cosine of x.
Calling interface:
void sinhcoshl(long double x, long double *sinval, long double *cosval);
void sinhcosh(double x,
float *sinval, float *cosval);
void sinhcoshf(float x, float *sinval, float *cosval);
Description: The tanh function returns the hyperbolic tangent of x, (ex-e-x)/(ex+e-x).
Calling interface:
long double tanhl(long double
x);
double tanh(double x);
float tanhf(float x);