Python中的numpy.argwhere()

Python中的numpy.argwhere()

numpy.argwhere()函数用于查找非零的数组元素的索引,按元素分组。

语法: numpy.argwhere(arr)

参数 :
arr : [array_like] 输入阵列。

返回 : [ndarray] 非零的元素的索引。指数按元素分组。

代码#1:

# Python program explaining
# argwhere() function
   
import numpy as geek
  
# input array
in_arr = [[ 2, 0, 7], [ 0, 5, 9]]
print ("Input array : ", in_arr) 
  
out_arr = geek.argwhere(in_arr)
print ("Output indices of non zero array element: \n", out_arr)

输出:

Input array :  [[2, 0, 7], [0, 5, 9]]
Output indices of non zero array element: 
 [[0 0]
 [0 2]
 [1 1]
 [1 2]]

代码#2:

# Python program explaining
# argwhere() function
   
import numpy as geek
  
# input array
in_arr = geek.arange(8).reshape(4, 2)
print ("Input array : ", in_arr) 
  
out_arr = geek.argwhere(in_arr>4)
print ("Output indices greater than 4: \n", out_arr)

输出:

Input array :  [[0 1]
 [2 3]
 [4 5]
 [6 7]]
Output indices greater than 4: 
 [[2 1]
 [3 0]
 [3 1]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程