index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libm_dbl
/
tanh.c
blob: 89743ba90fba9b5e7fcde6192b06d2b4bf51d9d9 (
plain
)
1
2
3
4
5
#include
<math.h>
double
tanh
(
double
x
)
{
return
sinh
(
x
)
/
cosh
(
x
);
}