gpt4 book ai didi

python - 基于另一个数组更改 numpy 数组值的矢量化方法

转载 作者:太空宇宙 更新时间:2023-11-04 00:17:29 26 4
gpt4 key购买 nike

是否有一种向量化(或更好)的方式将值设置为特定值numpy 数组的数据点基于除此之外的另一种方式?

import numpy as np

data = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
pos = np.array([[1, 2], [2, 0]])

for p in pos:
i,j = p
data[i,j] = 20

print(data)

最佳答案

使用更高版本的 Python,您可以通过解包另一个可迭代对象来在推导式中创建列表。然后我们传递该列表以进行切片分配。

我们访问(切片)的方式是通过 Integer Array Indexing 完成的

data[[*pos]] = 20
data

array([[ 1, 2, 3],
[ 4, 5, 20],
[20, 8, 9]])

对于其他版本的 Python 尝试:

data[pos.tolist()] = 20
data

关于python - 基于另一个数组更改 numpy 数组值的矢量化方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50398003/

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