gpt4 book ai didi

python - 为二维数组中除一个索引之外的所有索引添加一个值

转载 作者:行者123 更新时间:2023-11-28 21:00:07 24 4
gpt4 key购买 nike

如何为 numpy 数组 a 中的所有索引添加一个值,除了一个索引,无需 制作掩码?请注意,我想要反转a[0,0]索引的操作,因为在我的用例中,右边的操作>+= 不能在 0,0 索引处执行。

import numpy as np

a = np.random.rand(10, 10)

# The 0,0 index is incremented with 1.
a[0,0] += 1.

# I would like to increment all others with three += 3.

最佳答案

只需将整个数组加 3,然后从所选元素中减去 2:

a += 3
a[0, 0] -= 2

关于python - 为二维数组中除一个索引之外的所有索引添加一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48811883/

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