I think it has something to do with the fact that the variables in question here were in a two dimensional array. The following would always return a rounded value:
var1(x,y) = var2(x,y)/var3(x,y)
BUT, the following returns exact values:
temp1 = var2(x,y)
temp2 = var3(x,y)
var1 = temp1/temp2
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.