Values For Standard Hardware Floating Point Arithmetics
The following values of machine epsilon are encountered in practice.
| IEEE 754 - 2008 | Common name | C++ data type | Base | Precision | Machine epsilon | C++ or Python formula | Value |
|---|---|---|---|---|---|---|---|
| binary16 | half precision | not available | 2 | 11 (one bit is implicit) | 2 -11 | pow (2, -11) | 4.88e-04 |
| binary32 | single precision | float | 2 | 24 (one bit is implicit) | 2 -23 | pow (2, -23) | 1.192e-07 |
| binary64 | double precision | double | 2 | 53 (one bit is implicit) | 2 -52 | pow (2, -52) | 2.22e-16 |
| binary80 | extended precision | _float80 | 2 | 64 | 2 -64 | pow (2, -64) | 5.42e-20 |
| binary128 | quad(ruple) precision | _float128 | 2 | 113 (one bit is implicit) | 2 -113 | pow (2, -113) | 9.63e-35 |
| decimal32 | single precision decimal | _Decimal32 | 10 | 7 | 0.5 × 10 -6 | pow (10, -6) / 2 | 5e-7 |
| decimal64 | double precision decimal | _Decimal64 | 10 | 16 | 0.5 × 10 -15 | pow (10, -15) / 2 | 5e-16 |
| decimal128 | quad(ruple) precision decimal | _Decimal128 | 10 | 34 | 0.5 × 10 -33 | pow (10, -33) / 2 | 5e-34 |
Read more about this topic: Machine Epsilon
Famous quotes containing the words values, standard, hardware, floating and/or point:
“Despite the hundreds of attempts, police terror and the concentration camps have proved to be more or less impossible subjects for the artist; since what happened to them was beyond the imagination, it was therefore also beyond art and all those human values on which art is traditionally based.”
—A. Alvarez (b. 1929)
“As in political revolutions, so in paradigm choicethere is no standard higher than the assent of the relevant community. To discover how scientific revolutions are effected, we shall therefore have to examine not only the impact of nature and of logic, but also the techniques of persuasive argumentation effective within the quite special groups that constitute the community of scientists.”
—Thomas S. Kuhn (b. 1922)
“A friend of mine spoke of books that are dedicated like this: To my wife, by whose helpful criticism ... and so on. He said the dedication should really read: To my wife. If it had not been for her continual criticism and persistent nagging doubt as to my ability, this book would have appeared in Harpers instead of The Hardware Age.”
—Brenda Ueland (18911985)
“It is only for a little while, only occasionally, methinks, that we want a garden. Surely a good man need not be at the labor to level a hill for the sake of a prospect, or raise fruits and flowers, and construct floating islands, for the sake of a paradise. He enjoys better prospects than lie behind any hill. Where an angel travels it will be paradise all the way, but where Satan travels it will be burning marl and cinders.”
—Henry David Thoreau (18171862)
“If mothers are told to do this or that or the other,... they lose touch with their own ability to act.... Only too easily they feel incompetent. If they must look up everything in a book, they are always too late even when they do the right things, because the right things have to be done immediately. It is only possible to act at exactly the right point when the action is intuitive or by instinct, as we say. The mind can be brought to bear on the problem afterwards.”
—D.W. Winnicott (20th century)