如何处理 PHP 中浮点数的奇怪舍入

发布于 2024-08-21 09:51:48 字数 381 浏览 3 评论 0原文

众所周知,浮点运算并不总是完全准确,但是如何处理它的不一致之处呢?

举个例子,在 PHP 5.2.9 中:(这在 5.3 中不会发生)

echo round(14.99225, 4);  // 14.9923 
echo round(15.99225, 4);  // 15.9923 
echo round(16.99225, 4);  // 16.9922 ??
echo round(17.99225, 4);  // 17.9922 ??
echo round(25.99225, 4);  // 25.9922 ??
echo round(26.99225, 4);  // 26.9923

您将如何解决这个问题?

As we all know, floating point arithmetic is not always completely accurate, but how do you deal with its inconsistencies?

As an example, in PHP 5.2.9: (this doesn't happen in 5.3)

echo round(14.99225, 4);  // 14.9923 
echo round(15.99225, 4);  // 15.9923 
echo round(16.99225, 4);  // 16.9922 ??
echo round(17.99225, 4);  // 17.9922 ??
echo round(25.99225, 4);  // 25.9922 ??
echo round(26.99225, 4);  // 26.9923

How would you work around this?

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

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

发布评论

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

评论(2

孤独患者 2024-08-28 09:51:48

欢迎来到 IEEE754,祝您住宿愉快

使用 bcgmp 代替。

Welcome to IEEE754, enjoy your stay.

Use bc or gmp instead.

韶华倾负 2024-08-28 09:51:48

你如何处理它
不一致?

  • 对于基于十进制表示的精确结果很重要的东西(即金钱),不要使用 IEEE754 浮点数,您可以使用“bignum”库,例如 BCMath
  • 对于您只需要计算相对精确的内容(就像大多数科学计算一样),您可以使用数值稳定算法,以便不一致保持在最低有效位(在那里它们无关紧要) )。

how do you deal with its
inconsistencies?

  • For stuff where exact results based on decimal representation matters (i.e. money), do not use IEEE754 floats, you use "bignum" libraries like BCMath
  • For stuff where you just need your calculations to be relatively precise (like most scientific calculations), you use numerically stable algorithms so that the inconsistencies stay in the least significant bits (where they don't matter).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文