Posted: 01:52am 12 Apr 2017 |
Copy link to clipboard |
 Print this post |
|
Here's a short program that computes the machine epsilon of the MicroMite eXtreme.
' epsmach.bas
' machine epsilon
''''''''''''''''' one = 1.0 two = 2.0 u =1.0 do u = u / two if ((one + u) = one) then exit do loop epsmach = two * u print " " print "eps = ", epsmach print " " end
The value for the eXtreme is 2.22045e-16
|