‎2013 Aug 22 3:02 AM
Hi,
Can some explain to me why below result is 9.2249999999999999E-01, not 9.225E-01?
DATA: l_calc_base TYPE f.
l_calc_base = ( 2008.00 - 163.00) / 2000.00.
‎2013 Aug 22 3:38 AM
Hi
Here is what it says in ABAP documentation.
The value range of type F numbers is 1x10**-307 to 1x10**308 for positive and negative numbers, including 0 (zero). The accuracy range is approximately 15 decimals, depending on the floating point arithmetic of the hardware platform. Since type F data is internally converted to a binary system, rounding errors can occur. Although the ABAP processor tries to minimize these effects, you should not use type F data if high accuracy is required. Instead, use type P data.
It clearly mentions that the accuracy when using type F is appoximately 15 decimals.
Regards,
Philip.
‎2013 Aug 22 4:19 AM
Hi Jiangang You,
DATA: l_calc_base TYPE f.
l_calc_base = ( 2008 - 163 ) / 2000.
Result is 9.2249999999999999E-01
The data type for floating point numbers f has a value range of2,2250738585072014E-308 to 1,7976931348623157E+308, positive as well as negative, and the number 0, with an accuracy of at least 15 decimal places.
You cannot enter floating point numbers directly in your program. Instead, you have to use text literals that can be interpreted as floating point numbers, that is, contains a number in scientific notation. Mathematical or commercial notation are not permitted unless they can be interpreted as scientific notation.
Arithmetic expressions with calculation type f are performed using floating point arithmetic. Use this if you need a very large value range or you are making decimal calculations, but be aware of the following features of floating point arithmetic.
Internally, the exponent and the mantissa of floating point numbers are stored separately, each in two parts. This can lead to unexpected results, despite the high degree of intrinsic accuracy. These occur mainly when performing conversions from and to type f.
The ABAP runtime environment always calculates commercially and not numerically like the underlying machine arithmetic. According to the rounding algorithm of the latter, the end digit 5 must always be rounded to the nearest even number (not the next largest number), that is, from 2.5 to 2, 3.5 to 4.
You should also note that multiplication using powers of 10 (positive or negative) is not an exact operation.
As well as rounding errors, the restricted number of decimal places for the mantissa can lead to the loss of trailing digits.
This means you cannot rely on the last digits in floating point arithmetic. In particular, you should not usually test two floating point numbers a and b for equality; instead, you should check whether the relative difference abs((a - b)/a) is less than a predefined limit, such as 10**(-7).
See this link http://help.sap.com/abapdocu_70/en/ABENNUMBER_TYPES.htm
This is the reason for getting 9.2249999999999999E-01, not 9.225E-01.
Regards,
Ramesh.T