C Math asinh() Function
Example
Return the inverse hyperbolic sine of different numbers:
printf("%f", asinh(7));
printf("%f", asinh(56));
printf("%f", asinh(2.45));
Try it Yourself »
Definition and Usage
The asinh() function returns the inverse hyperbolic sine of a number.
The asinh() function is defined in the <math.h> header file.
Syntax
One of the following:
asinh(double number);
Parameter Values
| Parameter | Description |
|---|---|
| number | Required. Specifies a number. |
Technical Details
| Returns: |
A double value representing the inverse hyperbolic sine of a number.
|
|---|