\[\left(J \cdot \left(e^{\ell} - e^{-\ell}\right)\right) \cdot \cos \left(\frac{K}{2}\right) + U
\]
↓
\[\begin{array}{l}
t_0 := \cos \left(0.5 \cdot K\right)\\
\left(2 \cdot \left(t_0 \cdot \left(\ell \cdot J\right)\right) + 0.3333333333333333 \cdot \left(t_0 \cdot \left(J \cdot {\ell}^{3}\right)\right)\right) + U
\end{array}
\]
(FPCore (J l K U)
:precision binary64
(+ (* (* J (- (exp l) (exp (- l)))) (cos (/ K 2.0))) U))
↓
(FPCore (J l K U)
:precision binary64
(let* ((t_0 (cos (* 0.5 K))))
(+
(+
(* 2.0 (* t_0 (* l J)))
(* 0.3333333333333333 (* t_0 (* J (pow l 3.0)))))
U)))double code(double J, double l, double K, double U) {
return ((J * (exp(l) - exp(-l))) * cos((K / 2.0))) + U;
}
↓
double code(double J, double l, double K, double U) {
double t_0 = cos((0.5 * K));
return ((2.0 * (t_0 * (l * J))) + (0.3333333333333333 * (t_0 * (J * pow(l, 3.0))))) + U;
}
real(8) function code(j, l, k, u)
real(8), intent (in) :: j
real(8), intent (in) :: l
real(8), intent (in) :: k
real(8), intent (in) :: u
code = ((j * (exp(l) - exp(-l))) * cos((k / 2.0d0))) + u
end function
↓
real(8) function code(j, l, k, u)
real(8), intent (in) :: j
real(8), intent (in) :: l
real(8), intent (in) :: k
real(8), intent (in) :: u
real(8) :: t_0
t_0 = cos((0.5d0 * k))
code = ((2.0d0 * (t_0 * (l * j))) + (0.3333333333333333d0 * (t_0 * (j * (l ** 3.0d0))))) + u
end function
public static double code(double J, double l, double K, double U) {
return ((J * (Math.exp(l) - Math.exp(-l))) * Math.cos((K / 2.0))) + U;
}
↓
public static double code(double J, double l, double K, double U) {
double t_0 = Math.cos((0.5 * K));
return ((2.0 * (t_0 * (l * J))) + (0.3333333333333333 * (t_0 * (J * Math.pow(l, 3.0))))) + U;
}
def code(J, l, K, U):
return ((J * (math.exp(l) - math.exp(-l))) * math.cos((K / 2.0))) + U
↓
def code(J, l, K, U):
t_0 = math.cos((0.5 * K))
return ((2.0 * (t_0 * (l * J))) + (0.3333333333333333 * (t_0 * (J * math.pow(l, 3.0))))) + U
function code(J, l, K, U)
return Float64(Float64(Float64(J * Float64(exp(l) - exp(Float64(-l)))) * cos(Float64(K / 2.0))) + U)
end
↓
function code(J, l, K, U)
t_0 = cos(Float64(0.5 * K))
return Float64(Float64(Float64(2.0 * Float64(t_0 * Float64(l * J))) + Float64(0.3333333333333333 * Float64(t_0 * Float64(J * (l ^ 3.0))))) + U)
end
function tmp = code(J, l, K, U)
tmp = ((J * (exp(l) - exp(-l))) * cos((K / 2.0))) + U;
end
↓
function tmp = code(J, l, K, U)
t_0 = cos((0.5 * K));
tmp = ((2.0 * (t_0 * (l * J))) + (0.3333333333333333 * (t_0 * (J * (l ^ 3.0))))) + U;
end
code[J_, l_, K_, U_] := N[(N[(N[(J * N[(N[Exp[l], $MachinePrecision] - N[Exp[(-l)], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[Cos[N[(K / 2.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + U), $MachinePrecision]
↓
code[J_, l_, K_, U_] := Block[{t$95$0 = N[Cos[N[(0.5 * K), $MachinePrecision]], $MachinePrecision]}, N[(N[(N[(2.0 * N[(t$95$0 * N[(l * J), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.3333333333333333 * N[(t$95$0 * N[(J * N[Power[l, 3.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + U), $MachinePrecision]]
\left(J \cdot \left(e^{\ell} - e^{-\ell}\right)\right) \cdot \cos \left(\frac{K}{2}\right) + U
↓
\begin{array}{l}
t_0 := \cos \left(0.5 \cdot K\right)\\
\left(2 \cdot \left(t_0 \cdot \left(\ell \cdot J\right)\right) + 0.3333333333333333 \cdot \left(t_0 \cdot \left(J \cdot {\ell}^{3}\right)\right)\right) + U
\end{array}