You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
190 B
12 lines
190 B
#include <math.h>
|
|
|
|
double tanh(double x) {
|
|
int sign = 0;
|
|
if (x < 0) {
|
|
sign = 1;
|
|
x = -x;
|
|
}
|
|
x = expm1(-2 * x);
|
|
x = x / (x + 2);
|
|
return sign ? x : -x;
|
|
}
|
|
|