1SINH(3) Linux Programmer's Manual SINH(3)
2
3
4
6 sinh, sinhf, sinhl - hyperbolic sine function
7
9 #include <math.h>
10
11 double sinh(double x);
12 float sinhf(float x);
13 long double sinhl(long double x);
14
15 Link with -lm.
16
18 The sinh() function returns the hyperbolic sine of x, which is defined
19 mathematically as (exp(x) - exp(-x)) / 2.
20
22 SVr4, 4.3BSD, C89. The float and long double variants are C99 require‐
23 ments.
24
26 acosh(3), asinh(3), atanh(3), cosh(3), csinh(3), tanh(3)
27
28
29
30 2002-07-27 SINH(3)