Go to the first, previous, next, last section, table of contents.


acosh

Syntax

#include <math.h>

double acosh(double x);

Description

This function returns the inverse hyperbolic cosine of x.

Return Value

The inverse hyperbolic cosine of x. If the value of x is less than 1, the return value is NaN and errno is set to EDOM.

Portability

not ANSI, not POSIX


Go to the first, previous, next, last section, table of contents.