numpy.argwhere#

numpy.argwhere(a)[源代码]#

查找数组中非零元素的索引,按元素分组。

参数:
aarray_like

输入数据。

返回:
index_array(N, a.ndim) ndarray

非零元素的索引。索引按元素分组。此数组的形状为 (N, a.ndim),其中 N 是非零元素的数量。

参见

where, nonzero

注释

np.argwhere(a) 几乎等同于 np.transpose(np.nonzero(a)),但会生成适合 0D 数组的正确形状的结果。

argwhere 的输出不适合用于索引数组。为此,请改用 nonzero(a)

示例

>>> import numpy as np
>>> x = np.arange(6).reshape(2,3)
>>> x
array([[0, 1, 2],
       [3, 4, 5]])
>>> np.argwhere(x>1)
array([[0, 2],
       [1, 0],
       [1, 1],
       [1, 2]])