1SINH(3M) SINH(3M)
23
4
NAME
6sinh, cosh, tanh - hyperbolic functions
7
SYNOPSIS
9#include <math.h>
1011
double sinh(x)
12double x;
1314
double cosh(x)
15double x;
1617
double tanh(x)
18double x;
19
DESCRIPTION
21These functions compute the designated hyperbolic functions for real
22arguments.
23
DIAGNOSTICS
25Sinh and cosh return a huge value of appropriate sign when the correct
26value would overflow.
2728
29
30
SINH(3M)