(FPCore (x y z)
:precision binary64
(+
x
(/
(*
y
(+
(* (+ (* z 0.0692910599291889) 0.4917317610505968) z)
0.279195317918525))
(+ (* (+ z 6.012459259764103) z) 3.350343815022304))))
↓
(FPCore (x y z)
:precision binary64
(if (or (<= z -5.5) (not (<= z 2.55e-31)))
(+ x (/ y (- 14.431876219268936 (/ 15.646356830292042 z))))
(+ x (/ y 12.000000000000014))))
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = x + ((y * ((((z * 0.0692910599291889d0) + 0.4917317610505968d0) * z) + 0.279195317918525d0)) / (((z + 6.012459259764103d0) * z) + 3.350343815022304d0))
end function
↓
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if ((z <= (-5.5d0)) .or. (.not. (z <= 2.55d-31))) then
tmp = x + (y / (14.431876219268936d0 - (15.646356830292042d0 / z)))
else
tmp = x + (y / 12.000000000000014d0)
end if
code = tmp
end function
def code(x, y, z):
tmp = 0
if (z <= -5.5) or not (z <= 2.55e-31):
tmp = x + (y / (14.431876219268936 - (15.646356830292042 / z)))
else:
tmp = x + (y / 12.000000000000014)
return tmp
function code(x, y, z)
return Float64(x + Float64(Float64(y * Float64(Float64(Float64(Float64(z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / Float64(Float64(Float64(z + 6.012459259764103) * z) + 3.350343815022304)))
end
↓
function code(x, y, z)
tmp = 0.0
if ((z <= -5.5) || !(z <= 2.55e-31))
tmp = Float64(x + Float64(y / Float64(14.431876219268936 - Float64(15.646356830292042 / z))));
else
tmp = Float64(x + Float64(y / 12.000000000000014));
end
return tmp
end
function tmp = code(x, y, z)
tmp = x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304));
end
↓
function tmp_2 = code(x, y, z)
tmp = 0.0;
if ((z <= -5.5) || ~((z <= 2.55e-31)))
tmp = x + (y / (14.431876219268936 - (15.646356830292042 / z)));
else
tmp = x + (y / 12.000000000000014);
end
tmp_2 = tmp;
end