\[\pi \cdot \ell - \frac{1}{F \cdot F} \cdot \tan \left(\pi \cdot \ell\right)
\]
↓
\[\begin{array}{l}
\mathbf{if}\;\pi \cdot \ell \leq -1 \cdot 10^{+27}:\\
\;\;\;\;\ell \cdot \pi\\
\mathbf{elif}\;\pi \cdot \ell \leq 2 \cdot 10^{-48}:\\
\;\;\;\;\pi \cdot \ell - \frac{\frac{1}{F}}{\frac{F}{\tan \left(\pi \cdot \ell\right)}}\\
\mathbf{else}:\\
\;\;\;\;\ell \cdot \pi\\
\end{array}
\]
(FPCore (F l)
:precision binary64
(- (* PI l) (* (/ 1.0 (* F F)) (tan (* PI l)))))
↓
(FPCore (F l)
:precision binary64
(if (<= (* PI l) -1e+27)
(* l PI)
(if (<= (* PI l) 2e-48)
(- (* PI l) (/ (/ 1.0 F) (/ F (tan (* PI l)))))
(* l PI))))double code(double F, double l) {
return (((double) M_PI) * l) - ((1.0 / (F * F)) * tan((((double) M_PI) * l)));
}
↓
double code(double F, double l) {
double tmp;
if ((((double) M_PI) * l) <= -1e+27) {
tmp = l * ((double) M_PI);
} else if ((((double) M_PI) * l) <= 2e-48) {
tmp = (((double) M_PI) * l) - ((1.0 / F) / (F / tan((((double) M_PI) * l))));
} else {
tmp = l * ((double) M_PI);
}
return tmp;
}
public static double code(double F, double l) {
return (Math.PI * l) - ((1.0 / (F * F)) * Math.tan((Math.PI * l)));
}
↓
public static double code(double F, double l) {
double tmp;
if ((Math.PI * l) <= -1e+27) {
tmp = l * Math.PI;
} else if ((Math.PI * l) <= 2e-48) {
tmp = (Math.PI * l) - ((1.0 / F) / (F / Math.tan((Math.PI * l))));
} else {
tmp = l * Math.PI;
}
return tmp;
}
def code(F, l):
return (math.pi * l) - ((1.0 / (F * F)) * math.tan((math.pi * l)))
↓
def code(F, l):
tmp = 0
if (math.pi * l) <= -1e+27:
tmp = l * math.pi
elif (math.pi * l) <= 2e-48:
tmp = (math.pi * l) - ((1.0 / F) / (F / math.tan((math.pi * l))))
else:
tmp = l * math.pi
return tmp
function code(F, l)
return Float64(Float64(pi * l) - Float64(Float64(1.0 / Float64(F * F)) * tan(Float64(pi * l))))
end
↓
function code(F, l)
tmp = 0.0
if (Float64(pi * l) <= -1e+27)
tmp = Float64(l * pi);
elseif (Float64(pi * l) <= 2e-48)
tmp = Float64(Float64(pi * l) - Float64(Float64(1.0 / F) / Float64(F / tan(Float64(pi * l)))));
else
tmp = Float64(l * pi);
end
return tmp
end
function tmp = code(F, l)
tmp = (pi * l) - ((1.0 / (F * F)) * tan((pi * l)));
end
↓
function tmp_2 = code(F, l)
tmp = 0.0;
if ((pi * l) <= -1e+27)
tmp = l * pi;
elseif ((pi * l) <= 2e-48)
tmp = (pi * l) - ((1.0 / F) / (F / tan((pi * l))));
else
tmp = l * pi;
end
tmp_2 = tmp;
end
code[F_, l_] := N[(N[(Pi * l), $MachinePrecision] - N[(N[(1.0 / N[(F * F), $MachinePrecision]), $MachinePrecision] * N[Tan[N[(Pi * l), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[F_, l_] := If[LessEqual[N[(Pi * l), $MachinePrecision], -1e+27], N[(l * Pi), $MachinePrecision], If[LessEqual[N[(Pi * l), $MachinePrecision], 2e-48], N[(N[(Pi * l), $MachinePrecision] - N[(N[(1.0 / F), $MachinePrecision] / N[(F / N[Tan[N[(Pi * l), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(l * Pi), $MachinePrecision]]]
\pi \cdot \ell - \frac{1}{F \cdot F} \cdot \tan \left(\pi \cdot \ell\right)
↓
\begin{array}{l}
\mathbf{if}\;\pi \cdot \ell \leq -1 \cdot 10^{+27}:\\
\;\;\;\;\ell \cdot \pi\\
\mathbf{elif}\;\pi \cdot \ell \leq 2 \cdot 10^{-48}:\\
\;\;\;\;\pi \cdot \ell - \frac{\frac{1}{F}}{\frac{F}{\tan \left(\pi \cdot \ell\right)}}\\
\mathbf{else}:\\
\;\;\;\;\ell \cdot \pi\\
\end{array}