gpt4 book ai didi

python - 如何使用两个索引数组扩展 numpy 数组

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

<分区>

我有一个 numpy 矩阵,例如:

a = np.array([[1, 2], [3, 4]])

然后,我想使用另一个带有索引的numpy矩阵来扩展矩阵,例如:

idxes = np.array(([0, 1, 0], [1, 0, 1]]) # the indexes matrix

操作是这样的:

result = a[:, idxes] # this is an wrong expression

我期望的结果是:

>>result
array([[1, 2, 1],
[4, 3, 4]])

我想知道怎么做。

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