#include <math.h>
Go to the source code of this file.
◆ sinh()
Definition at line 11 of file sinh.c.
12{
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