ReactOS 0.4.15-dev-7842-g558ab78
sinh.c File Reference
#include <math.h>
Include dependency graph for sinh.c:

Go to the source code of this file.

Functions

double sinh (double x)
 

Function Documentation

◆ sinh()

double sinh ( double  x)

Definition at line 11 of file sinh.c.

12{
13 if(x >= 0.0)
14 {
15 const double epos = exp(x);
16 return (epos - 1.0/epos) / 2.0;
17 }
18 else
19 {
20 const double eneg = exp(-x);
21 return (1.0/eneg - eneg) / 2.0;
22 }
23}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
DWORD exp
Definition: msg.c:16058