如何通过使用高级索引分配来直接修改掩码数组

发布于 2025-01-17 06:13:53 字数 939 浏览 0 评论 0原文

我有一个数组,我想更改某些行上的某些值。所需的行将由布尔掩码数组寻址。然后我想修改行中的一个值:

a = np.array([[0., 0.],
              [0., 0.],
              [0., 0.],
              [0., 0.],
              [0., 0.]])
mask = np.array([False,  True,  True,  True, False])
multi = np.array([0, 1, 2], dtype=np.int64)
ind = np.array([1, 0, 1], dtype=np.int64)
res = np.array([0.02238303, 0.01624808, 0.0234094])

a[mask][multi, ind] = res
print(a)           # --> [[0. 0.] [0. 0.] [0. 0.] [0. 0.] [0. 0.]]
# The desired result --> [[0. 0.] [0. 0.02238303] [0.01624808 0.] [0. 0.0234094 ] [0. 0.]]

我知道我可以通过以下方式做到这一点:

sample = a[mask]
sample[multi, ind] = res
print(sample)     # --> [[0. 0.02238303] [0.01624808 0.] [0. 0.0234094]]
a[mask] = sample
print(a)          # --> [[0. 0.] [0. 0.02238303] [0.01624808 0.] [0. 0.0234094 ] [0. 0.]]

是否可以通过在屏蔽数组上建立索引来直接完成这项工作,例如 a[mask][multi, ind] =资源?如何?

I have an array that I want to change some values on some rows. The desired rows will be addressed by a Boolean masked array. Then I want to modify one of the values in the rows:

a = np.array([[0., 0.],
              [0., 0.],
              [0., 0.],
              [0., 0.],
              [0., 0.]])
mask = np.array([False,  True,  True,  True, False])
multi = np.array([0, 1, 2], dtype=np.int64)
ind = np.array([1, 0, 1], dtype=np.int64)
res = np.array([0.02238303, 0.01624808, 0.0234094])

a[mask][multi, ind] = res
print(a)           # --> [[0. 0.] [0. 0.] [0. 0.] [0. 0.] [0. 0.]]
# The desired result --> [[0. 0.] [0. 0.02238303] [0.01624808 0.] [0. 0.0234094 ] [0. 0.]]

I know I can do this by:

sample = a[mask]
sample[multi, ind] = res
print(sample)     # --> [[0. 0.02238303] [0.01624808 0.] [0. 0.0234094]]
a[mask] = sample
print(a)          # --> [[0. 0.] [0. 0.02238303] [0.01624808 0.] [0. 0.0234094 ] [0. 0.]]

Is it possible to do this job directly by indexing on the masked array something like a[mask][multi, ind] = res? How?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文