We are implementing some geometric algorithms but found the effect of float number calculation error is big. Is there any guide lines to reduce this kind of effects?

The algorithms contains many parts and is very complex. One of the example is to calculate the intersects between a line and a spline (serials of bezier curve). When the line position close to the end point of bezier the result is unstable.

Thanks

link|improve this question

22% accept rate
2  
Which programming environment/language? – David Stratton Jun 20 '11 at 13:26
And which algorithm? Show us your code. – dan04 Jun 20 '11 at 13:29
We are using Java, but I don't believe this problem is programming language related because every floating point calculation is done by cpu which follows IEEE754 standard. – Xinwang Jun 20 '11 at 13:29
feedback

1 Answer

  • Use algorithms which are less sensitive to floating point error (see numerical stability)
  • Use wider types (ex. double instead of float)
link|improve this answer
Thanks, this is very help. However my problem should be: "how to make the algorithms less sensitive to floating point error?". Is there any general guidelines for this, or any book I need to read about. – Xinwang Jun 21 '11 at 5:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.