gpt4 book ai didi

python - Numpy astype 四舍五入到错误的值

转载 作者:太空狗 更新时间:2023-10-30 02:39:37 35 4
gpt4 key购买 nike

所以我试图将我的 float numpy 数组转换为整数。但是当我这样做时:

array.astype(np.uint64)

它改变了这个数组:

[ 550.  514.  451.  494.  490.  500.  ...]

这个:

[549 513 450 493 489 499 ... ]

所以,我想知道你们中是否有人知道这是为什么?我必须获取 np.uint64 作为我接下来使用的代码的输出。

提前谢谢你。

最佳答案

如评论中所说,转换为整数不会四舍五入,它只是截断非整数部分。在控制台输出中显示为 550. 的 float 实际上可能是 549.999999999,它将被截断为 549。在类型转换之前 使用舍入。一个例子:

>>> a = np.array([5, 6, 7], dtype=float) - 1e-12
>>> a
array([ 5., 6., 7.])
>>> a.astype(np.uint64)
array([4, 5, 6], dtype=uint64)
>>> np.around(a).astype(np.uint64)
array([5, 6, 7], dtype=uint64)

关于python - Numpy astype 四舍五入到错误的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43910477/

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