picomath
Ruby
expm1.rb
def
expm1
(
x
)
if
x
.
abs
<
1
e
-
5
return
x
+
0
.
5
*
x
*
x
else
return
Math
.
exp
(
x
)
-
1
.
0
end
end