e.g I have stored a float number bigger than epsilon and less than 2epsilon, so how does the coumputer store such a number rather than change it into epsilon because of float number rules.
Asked
Active
Viewed 73 times
1 Answers
0
eps is defined as the smallest positive number that when added to 1.0 gives a number different than 1.0
If you want the smallest number near some other number x, use eps(x)
To see the details of how these numbers are stored, look into the IEEE specs for floating point numbers.

L. Scott Johnson
- 4,213
- 2
- 17
- 28