gpt4 book ai didi

python - 如何从矩阵中选择特定的列索引?

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

我有一个矩阵和一个列索引列表,我想从矩阵中为每一行选择它们。我怎样才能在 numpy 中做到这一点?

my_matrix = np.array([[1, 2], [4, 5]])
col_idx = np.array([1, 0])
selected = .... # selects 1st element of row 0 and 0th element of row 1.
print selected
# np.array([2, 4])

最佳答案

您可以使用范围进行切片:

In [11]: my_matrix[np.arange(my_matrix.shape[0]), col_idx]
Out[11]: array([2, 4])

关于python - 如何从矩阵中选择特定的列索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27555359/

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