picomath
Scheme
expm1.scm
(
define
(
expm1
x
)
(
if
(
<
(
abs
x
)
1
e-5
)
(
+
x
(
*
0.5
x
x
))
(
-
(
exp
x
)
1.0
)))