\[x + \left(\frac{\tan y + \tan z}{1 - \frac{\frac{\sin y \cdot \sin z}{\cos y}}{\cos z}} - \tan a\right)
\]
(FPCore (x y z a) :precision binary64 (+ x (- (tan (+ y z)) (tan a))))
↓
(FPCore (x y z a)
:precision binary64
(+
x
(-
(/ (+ (tan y) (tan z)) (- 1.0 (/ (/ (* (sin y) (sin z)) (cos y)) (cos z))))
(tan a))))
double code(double x, double y, double z, double a) {
return x + (tan((y + z)) - tan(a));
}
↓
double code(double x, double y, double z, double a) {
return x + (((tan(y) + tan(z)) / (1.0 - (((sin(y) * sin(z)) / cos(y)) / cos(z)))) - tan(a));
}
real(8) function code(x, y, z, a)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: a
code = x + (tan((y + z)) - tan(a))
end function
↓
real(8) function code(x, y, z, a)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: a
code = x + (((tan(y) + tan(z)) / (1.0d0 - (((sin(y) * sin(z)) / cos(y)) / cos(z)))) - tan(a))
end function
public static double code(double x, double y, double z, double a) {
return x + (Math.tan((y + z)) - Math.tan(a));
}
↓
public static double code(double x, double y, double z, double a) {
return x + (((Math.tan(y) + Math.tan(z)) / (1.0 - (((Math.sin(y) * Math.sin(z)) / Math.cos(y)) / Math.cos(z)))) - Math.tan(a));
}
def code(x, y, z, a):
return x + (math.tan((y + z)) - math.tan(a))