\[\frac{2}{1 + e^{-2 \cdot x}} - 1
\]
↓
\[\begin{array}{l}
\mathbf{if}\;-2 \cdot x \leq -10000000:\\
\;\;\;\;\frac{2}{1 + e^{-2 \cdot x}} + -1\\
\mathbf{elif}\;-2 \cdot x \leq 10^{-9}:\\
\;\;\;\;-0.3333333333333333 \cdot {x}^{3} + \left(x + 0.13333333333333333 \cdot {x}^{5}\right)\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]
(FPCore (x y) :precision binary64 (- (/ 2.0 (+ 1.0 (exp (* -2.0 x)))) 1.0))
↓
(FPCore (x y)
:precision binary64
(if (<= (* -2.0 x) -10000000.0)
(+ (/ 2.0 (+ 1.0 (exp (* -2.0 x)))) -1.0)
(if (<= (* -2.0 x) 1e-9)
(+
(* -0.3333333333333333 (pow x 3.0))
(+ x (* 0.13333333333333333 (pow x 5.0))))
-1.0)))double code(double x, double y) {
return (2.0 / (1.0 + exp((-2.0 * x)))) - 1.0;
}
↓
double code(double x, double y) {
double tmp;
if ((-2.0 * x) <= -10000000.0) {
tmp = (2.0 / (1.0 + exp((-2.0 * x)))) + -1.0;
} else if ((-2.0 * x) <= 1e-9) {
tmp = (-0.3333333333333333 * pow(x, 3.0)) + (x + (0.13333333333333333 * pow(x, 5.0)));
} else {
tmp = -1.0;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = (2.0d0 / (1.0d0 + exp(((-2.0d0) * x)))) - 1.0d0
end function
↓
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if (((-2.0d0) * x) <= (-10000000.0d0)) then
tmp = (2.0d0 / (1.0d0 + exp(((-2.0d0) * x)))) + (-1.0d0)
else if (((-2.0d0) * x) <= 1d-9) then
tmp = ((-0.3333333333333333d0) * (x ** 3.0d0)) + (x + (0.13333333333333333d0 * (x ** 5.0d0)))
else
tmp = -1.0d0
end if
code = tmp
end function
public static double code(double x, double y) {
return (2.0 / (1.0 + Math.exp((-2.0 * x)))) - 1.0;
}
↓
public static double code(double x, double y) {
double tmp;
if ((-2.0 * x) <= -10000000.0) {
tmp = (2.0 / (1.0 + Math.exp((-2.0 * x)))) + -1.0;
} else if ((-2.0 * x) <= 1e-9) {
tmp = (-0.3333333333333333 * Math.pow(x, 3.0)) + (x + (0.13333333333333333 * Math.pow(x, 5.0)));
} else {
tmp = -1.0;
}
return tmp;
}
def code(x, y):
return (2.0 / (1.0 + math.exp((-2.0 * x)))) - 1.0
↓
def code(x, y):
tmp = 0
if (-2.0 * x) <= -10000000.0:
tmp = (2.0 / (1.0 + math.exp((-2.0 * x)))) + -1.0
elif (-2.0 * x) <= 1e-9:
tmp = (-0.3333333333333333 * math.pow(x, 3.0)) + (x + (0.13333333333333333 * math.pow(x, 5.0)))
else:
tmp = -1.0
return tmp
function code(x, y)
return Float64(Float64(2.0 / Float64(1.0 + exp(Float64(-2.0 * x)))) - 1.0)
end
↓
function code(x, y)
tmp = 0.0
if (Float64(-2.0 * x) <= -10000000.0)
tmp = Float64(Float64(2.0 / Float64(1.0 + exp(Float64(-2.0 * x)))) + -1.0);
elseif (Float64(-2.0 * x) <= 1e-9)
tmp = Float64(Float64(-0.3333333333333333 * (x ^ 3.0)) + Float64(x + Float64(0.13333333333333333 * (x ^ 5.0))));
else
tmp = -1.0;
end
return tmp
end
function tmp = code(x, y)
tmp = (2.0 / (1.0 + exp((-2.0 * x)))) - 1.0;
end
↓
function tmp_2 = code(x, y)
tmp = 0.0;
if ((-2.0 * x) <= -10000000.0)
tmp = (2.0 / (1.0 + exp((-2.0 * x)))) + -1.0;
elseif ((-2.0 * x) <= 1e-9)
tmp = (-0.3333333333333333 * (x ^ 3.0)) + (x + (0.13333333333333333 * (x ^ 5.0)));
else
tmp = -1.0;
end
tmp_2 = tmp;
end
code[x_, y_] := N[(N[(2.0 / N[(1.0 + N[Exp[N[(-2.0 * x), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 1.0), $MachinePrecision]
↓
code[x_, y_] := If[LessEqual[N[(-2.0 * x), $MachinePrecision], -10000000.0], N[(N[(2.0 / N[(1.0 + N[Exp[N[(-2.0 * x), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + -1.0), $MachinePrecision], If[LessEqual[N[(-2.0 * x), $MachinePrecision], 1e-9], N[(N[(-0.3333333333333333 * N[Power[x, 3.0], $MachinePrecision]), $MachinePrecision] + N[(x + N[(0.13333333333333333 * N[Power[x, 5.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], -1.0]]
\frac{2}{1 + e^{-2 \cdot x}} - 1
↓
\begin{array}{l}
\mathbf{if}\;-2 \cdot x \leq -10000000:\\
\;\;\;\;\frac{2}{1 + e^{-2 \cdot x}} + -1\\
\mathbf{elif}\;-2 \cdot x \leq 10^{-9}:\\
\;\;\;\;-0.3333333333333333 \cdot {x}^{3} + \left(x + 0.13333333333333333 \cdot {x}^{5}\right)\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}