tanh
hyperbolic tangent
$ \tanh x = \frac{e^x-e^{-x}}{e^x+e^{-x}}
https://gyazo.com/3b209ce027ee765f79b5818d1c811b33
1に漸近するので複数つなげるといい感じの凸凹ができる
しかも
微分可能
code:julia
using Plots
x = -3:0.1:3
plt = plot(x, tanh.(x), label="tanh(x)", framestyle=:origin)