减少浮点数(舍入)误差的影响
我们正在实现一些几何算法,但发现浮点数计算误差的影响很大。有没有任何指南可以减少这种影响?
该算法包含很多部分并且非常复杂。其中一个示例是计算直线和样条曲线(贝塞尔曲线的序列)之间的交点。当线位置接近贝塞尔曲线终点时,结果不稳定。
谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
double
而不是float
)double
instead offloat
)