gpt4 book ai didi

Matlab: int32(2)/int32(3) 给出 1。如何得到正常的整数除法?

转载 作者:太空宇宙 更新时间:2023-11-03 20:11:14 27 4
gpt4 key购买 nike

当我将代码从 C++、Java、Python 等语言移植到 Matlab 中,并需要它以与整数相同的方式运行时。

int32(n) 不适用于除法(见帖子标题)。有没有一种类型可以做到?

编辑: 你猜怎么着,事实证明我最喜欢的语言并不像我想象的那么一致。 C++:

#include <cstdio>
int main() {
#define TEST(a, b) printf("%d / %d = %d\n", (a), (b), (a)/(b));
TEST(-4, 3);
TEST(4, -3);
TEST(-5, 3);
TEST(5, -3);
TEST(-1, 2);
TEST(1, -2);
return 0;
}

产生:

-4 / 3 = -1
4 / -3 = -1
-5 / 3 = -1
5 / -3 = -1
-1 / 2 = 0
1 / -2 = 0

python :

def TEST(a, b): return (a)/(b)

>>> TEST(-4, 3);
-2
>>> TEST(4, -3);
-2
>>> TEST(-5, 3);
-2
>>> TEST(5, -3);
-2
>>> TEST(-1, 2);
-1
>>> TEST(1, -2);
-1

最佳答案

“正常整数除法”,我认为你的意思是“底除法”,就像其他语言所做的那样?

在这种情况下,使用带有显式舍入选项的 idivide:

> idivide(int32(2), int32(3), 'floor')
ans = 0

关于Matlab: int32(2)/int32(3) 给出 1。如何得到正常的整数除法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12380178/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com