Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
2answers
556 views

.NET Math.Log10() behaves differently on different machines

I found that running Math.Log10(double.Epsilon) will return about -324 on machine A, but will return -Infinity on machine B. They originally behaved the same way by returning -324. Both ...
9
votes
2answers
402 views

Does “epsilon” really guarantees anything in floating-point computations?

To make the problem short let's say I want to compute expression: a / (b - c) on float's. To make sure the result is meaningful, I can check if 'b' and 'c' are inequal: float EPS = ...
6
votes
6answers
259 views

Minimum and maximum of the last 1000 values of the changing list

I'm creating an iterative algorithm (Monte Carlo method). The algorithm returns a value on every iteration, creating a stream of values. I need to analyze these values and stop the algorithm when say ...
6
votes
8answers
2k views

Double.Epsilon for equality, greater than, less than, less than or equal to, greater than or equal to

http://msdn.microsoft.com/en-us/library/system.double.epsilon.aspx If you create a custom algorithm that determines whether two floating-point numbers can be considered equal, you must use a ...
5
votes
2answers
350 views

Is the use of machine epsilon appropriate for floating-point equality tests?

This is a follow-up to Testing for floating-point value equality: Is there a standard name for the “precision” constant?. There is a very similar question Double.Epsilon for equality, greater than, ...
2
votes
2answers
43 views

Machine precision estimations

Some people say that machine epsilon for double precision floating point numbers is 2^-53 and other (more commonly) say its 2^-52. I have messed around estimating machine precision using integers ...
2
votes
1answer
137 views

Buggy floating point handling in Visual Studio?

I have a little story. I wanted to calculate the machine epsilon (the largest epsilon > 0 satisfying condition 1.0 + epsilon = 1.0) in a C program compiled by MS Visual Studio 2008 (running on ...
2
votes
4answers
123 views

How to get around some rounding errors?

I have a method that deals with some geographic coordinates in .NET, and I have a struct that stores a coordinate pair such that if 256 is passed in for one of the coordinates, it becomes 0. However, ...
2
votes
8answers
197 views

Lower Bounds For Floating Points

Are there any lower bounds for floating point types in C? Like there are lower bounds for integral types (int being at least 16 bits)?
2
votes
4answers
1k views

Using an epsilon value to determine if a ball in a game is not moving?

I have balls bouncing around and each time they collide their speed vector is reduced by the Coefficient of Restitution. Right now my balls CoR for my balls is .80 . So after many bounces my balls ...
1
vote
2answers
117 views

float numerical error. How does c++ know 0.99999982 is 1?

I normalized a vector and length of it should be 1. But the result of length method is 0.99999982 I don't know it's right or wrong. But if I print it out, the result is 1. Not 0.99999982( printed by ...
1
vote
2answers
153 views

Are floating-point numbers used without an epsilon always a code-smell?

This question is very simple. It is related to but definitely not a dupe of: Most unpatched Tomcat webservers are vulnerable, who's at fault? Seen the amazing amount of things that can go wrong ...
1
vote
1answer
320 views

How can I represent epsilon in a regular expression?

The text book teaches us to write regular expressions using the epsilon (ε) symbol, but how can I translate that symbol directly to code without having to completely rework my regular expression? For ...
0
votes
2answers
48 views

Java Test Number for its precision

I have to write a method, that calculates the ArcTan without using Math.atan() My algorythm is working, but it isn't stoping. public final static double EPSILON = 1E-16; // Given Value ...
0
votes
4answers
375 views

Is there a solution for Floating point Arithmetic problems in C++?

I am doing some floating point arithmetic and having precision problems. The resulting value is different on two machines for the same input. I read the post @ ...