forked from KolibriOS/kolibrios
b5b499b8c8
Move to folder with tcc. Part 1 git-svn-id: svn://kolibrios.org@8793 a494cfbc-eb01-0410-851d-a64ba20cac60
18 lines
302 B
C
18 lines
302 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
#include <math.h>
|
|
|
|
double tanh(double x)
|
|
{
|
|
if (x > 50)
|
|
return 1;
|
|
else if (x < -50)
|
|
return -1;
|
|
else
|
|
{
|
|
const double ebig = exp(x);
|
|
const double esmall = 1.0/ebig;
|
|
return (ebig - esmall) / (ebig + esmall);
|
|
}
|
|
}
|
|
|