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