Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 10482

Re: data type F

$
0
0

Hi Jiangang You,

 

 

Floating Point Numbers

The data type for floating point numbersf 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 typef 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.

  • For example, the number 1.5 can be represented exactly in this notation since 1.5 = 1*2**0 + 1*2**(-1), but the number 0.15 can only be represented approximately by the number 0,14999999999999999. If you round 0.15 up to 1 valid digit, the result is 0.1 rather than 0.2 you would expect. On the other hand, the number 1,5E-12 is represented by the number 1,5000000000000001E-12, which would be rounded up to 2E-12.
  • Another example that actually occurred is the calculation of 7.27% of 73050 to an accuracy of 2 decimal places. The intermediate result is 5.3107349999999997E+03, since the correct result, 5310.735 cannot be represented exactly in two parts with 53 bits. (If the hardware cannot represent a real number exactly, it uses the next representable floating point number). After rounding, you therefore get 5310.73, rather than 5310.74 as you would expect.

  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.

  • For example, although it can be represented exactly in two parts, a floating point number F of value 100.5, after the operation
    F = F / 100 * 100.
    it has the value 100.49999999999999.

As well as rounding errors, the restricted number of decimal places for the mantissa can lead to the loss of trailing digits.

  • For example, 1 - 1,0000000000000001 results in zero.

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).


Viewing all articles
Browse latest Browse all 10482

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>