I have the following formula:
SZT = SZ0 + (((SZ1 - SZ0) / (WMZ1 - WMZ0)) * (WMZT - WMZ0))
Example:
86266 + (((168480 - 86266) / (703786 - 510531)) * (703765.0 - 510531))
When I use the python interpreter (2.7.6) for this calculation, I got this result:
86266
When I use a calculator (Google for example) I got this result:
168471.066239
I assume the second is the correct result.
What's wrong about the calculation in Python?