index
:
user/sven/micropython.git
for-upstream
master
old
stmhal-flash
origin/HEAD
origin/docs/library/bluetooth
origin/master
origin/parse-bytecode
origin/v1.22-release
origin/v1.24-release
The MicroPython project
Sven Wegener
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); }