2021-04-27 18:33:31 +02:00
|
|
|
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
double sinh(double x)
|
|
|
|
{
|
2022-04-15 11:00:55 +02:00
|
|
|
if (x >= 0.0) {
|
|
|
|
const double epos = exp(x);
|
|
|
|
return (epos - 1.0 / epos) / 2.0;
|
|
|
|
} else {
|
|
|
|
const double eneg = exp(-x);
|
|
|
|
return (1.0 / eneg - eneg) / 2.0;
|
|
|
|
}
|
2021-04-27 18:33:31 +02:00
|
|
|
}
|