mirror of
https://github.com/m5stack/M5Stack_MicroPython.git
synced 2026-05-20 10:14:44 -07:00
6 lines
75 B
C
6 lines
75 B
C
#include <math.h>
|
|
|
|
double tanh(double x) {
|
|
return sinh(x) / cosh(x);
|
|
}
|