减少浮点数(舍入)误差的影响

发布于 2024-11-16 01:26:25 字数 141 浏览 3 评论 0原文

我们正在实现一些几何算法,但发现浮点数计算误差的影响很大。有没有任何指南可以减少这种影响?

该算法包含很多部分并且非常复杂。其中一个示例是计算直线和样条曲线(贝塞尔曲线的序列)之间的交点。当线位置接近贝塞尔曲线终点时,结果不稳定。

谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

≈。彩虹 2024-11-23 01:26:25
  • 使用对浮点错误不太敏感的算法(请参阅数值稳定性
  • 使用更广泛的类型(例如double 而不是 float
  • Use algorithms which are less sensitive to floating point error (see numerical stability)
  • Use wider types (ex. double instead of float)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文