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