gpt4 book ai didi

python - 再次对 Numpy 数组进行就地类型转换?

转载 作者:行者123 更新时间:2023-12-01 05:22:46 27 4
gpt4 key购买 nike

我有一个 float 数组,我想将其转换为int

a1 = np.ones(10)
a2 = a1.astype(int, copy=False)
a2.dtype # int
a1.dtype # float

这是怎么回事?我认为 astype(int, copy=False) 会就地转换类型。但似乎并没有这样做?

相关问题:In-place type conversion of a NumPy array

最佳答案

来自 copy argument documentation :

If this is set to false, and the dtype, order, and subok requirements are satisfied, the input array is returned instead of a copy.

它实际上无法就地转换类型。仅当输入数组已经是您想要的数据类型时,它才有效;否则,它无论如何都必须复制。

关于python - 再次对 Numpy 数组进行就地类型转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21990046/

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