Math FPCore C Fortran Java Python Julia MATLAB Wolfram TeX \[e^{\left(x + y \cdot \log y\right) - z}
\]
↓
\[e^{\left(-1 \cdot \left(y \cdot \log \left(\frac{1}{y}\right)\right) + x\right) - z}
\]
(FPCore (x y z) :precision binary64 (exp (- (+ x (* y (log y))) z))) ↓
(FPCore (x y z)
:precision binary64
(exp (- (+ (* -1.0 (* y (log (/ 1.0 y)))) x) z))) double code(double x, double y, double z) {
return exp(((x + (y * log(y))) - z));
}
↓
double code(double x, double y, double z) {
return exp((((-1.0 * (y * log((1.0 / y)))) + x) - z));
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = exp(((x + (y * log(y))) - z))
end function
↓
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = exp(((((-1.0d0) * (y * log((1.0d0 / y)))) + x) - z))
end function
public static double code(double x, double y, double z) {
return Math.exp(((x + (y * Math.log(y))) - z));
}
↓
public static double code(double x, double y, double z) {
return Math.exp((((-1.0 * (y * Math.log((1.0 / y)))) + x) - z));
}
def code(x, y, z):
return math.exp(((x + (y * math.log(y))) - z))
↓
def code(x, y, z):
return math.exp((((-1.0 * (y * math.log((1.0 / y)))) + x) - z))
function code(x, y, z)
return exp(Float64(Float64(x + Float64(y * log(y))) - z))
end
↓
function code(x, y, z)
return exp(Float64(Float64(Float64(-1.0 * Float64(y * log(Float64(1.0 / y)))) + x) - z))
end
function tmp = code(x, y, z)
tmp = exp(((x + (y * log(y))) - z));
end
↓
function tmp = code(x, y, z)
tmp = exp((((-1.0 * (y * log((1.0 / y)))) + x) - z));
end
code[x_, y_, z_] := N[Exp[N[(N[(x + N[(y * N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision]], $MachinePrecision]
↓
code[x_, y_, z_] := N[Exp[N[(N[(N[(-1.0 * N[(y * N[Log[N[(1.0 / y), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision] - z), $MachinePrecision]], $MachinePrecision]
e^{\left(x + y \cdot \log y\right) - z}
↓
e^{\left(-1 \cdot \left(y \cdot \log \left(\frac{1}{y}\right)\right) + x\right) - z}