小编nad*_*ine的帖子

脾气暴躁的类型舍入到错误的值

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

array.astype(np.uint64)
Run Code Online (Sandbox Code Playgroud)

它改变了这个数组:

[ 550.  514.  451.  494.  490.  500.  ...]
Run Code Online (Sandbox Code Playgroud)

对此:

[549 513 450 493 489 499 ... ]
Run Code Online (Sandbox Code Playgroud)

因此,我想知道你们中的任何人是否对此有一个想法?我必须获得np.uint64我接下来使用的代码的输出。

先感谢您。

python arrays numpy

4
推荐指数
1
解决办法
2059
查看次数

标签 统计

arrays ×1

numpy ×1

python ×1