Hyperbolic Functions

The Intel Math library supports the following hyperbolic functions:

ACOSH

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);

ASINH

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);

ATANH

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);

COSH

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);

SINH

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);

SINHCOSH

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);

TANH

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);