man pages section 3: Extended Library Functions, Volume 2

Exit Print View

Updated: July 2014
 
 

asinhf(3M)

Name

asinh, asinhf, asinhl - inverse hyperbolic sine functions

Synopsis

cc [ flag... ] file... –lm [ library... ]
#include <math.h>

double asinh(double x);
float asinhf(float x);
long double asinhl(long double x);

Description

These functions compute the inverse hyperbolic sine of their argument x.

Return Values

Upon successful completion, these functions return the inverse hyperbolic sine of their argument.

If x is NaN, NaN is returned.

If x is ±0 or ±Inf, x is returned.

Errors

No errors are defined.

Attributes

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
Interface Stability
Committed
MT-Level
MT-Safe
Standard

See also

math.h(3HEAD), sinh(3M), attributes(5), standards(5)