math.fmod 始终等于 math.mod?

发布于 2024-11-30 05:06:57 字数 334 浏览 0 评论 0原文

我试图用以下代码找出 math.fmod 和 math.mod 之间的区别:

a={9.5 ,-9.5,-9.5,9.5}
b={-3.5, 3.5,-3.5,3.5}
for i=1,#a do
    if math.fmod(a[i],b[i])~=math.mod(a[i],b[i]) then
        print("yeah")
    end
end

它从不打印“yeah”! 我应该在数组 a 和 b 中放入什么才能看到“是”?

ma​​th.fmod() 的文档说它返回 x 除以 y 的余数,将商向零舍入。

I tried to figure out the difference between math.fmod and math.mod with the following code:

a={9.5 ,-9.5,-9.5,9.5}
b={-3.5, 3.5,-3.5,3.5}
for i=1,#a do
    if math.fmod(a[i],b[i])~=math.mod(a[i],b[i]) then
        print("yeah")
    end
end

It never prints "yeah"!
What should I put in array a and b to see "yeah"?

The documentation of math.fmod() say that it returns the remainder of the division of x by y that rounds the quotient towards zero.

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

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

发布评论

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

评论(2

如果没有 2024-12-07 05:06:57

math.modmath.fmod 具有相同功能。实际上,math.mod 的存在只是为了兼容以前的版本;手册中没有列出。在代码中尝试使用 math.modf 而不是 math.mod

math.mod is the same function as math.fmod. Actually, math.mod exists only for compatibility with previous versions; it's not listed in the manual. Try math.modf instead of math.mod in your code.

淡看悲欢离合 2024-12-07 05:06:57

Lua 中的模定义为“将商向负无穷大舍入的除法的余数” -链接此处 - 这与 fmod 的定义不同(正如您在原始帖子中引用的那样)。

你真正需要做的是使用模运算符 (%) 而不是 math.mod:

a={9.5 ,-9.5,-9.5,9.5}
b={-3.5, 3.5,-3.5,3.5}
for i=1,#a do
    if math.fmod(a[i],b[i]) ~= a[i] % b[i] then
        print("yeah")
    end
end

Modulo in Lua is defined as "the remainder of a division that rounds the quotient towards minus infinity" -Link here - Which is different from the definition of fmod (as you quoted in your original post).

What you really need to do is use the modulo operator (%) rather than math.mod:

a={9.5 ,-9.5,-9.5,9.5}
b={-3.5, 3.5,-3.5,3.5}
for i=1,#a do
    if math.fmod(a[i],b[i]) ~= a[i] % b[i] then
        print("yeah")
    end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文