Python numpy.flatnonzero()

Python numpy.flatnonzero()

numpy.flatnonzero()函数用于计算Arr的扁平化版本中非零的索引。

语法 : numpy.flatnonzero(arr)

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

返回 : ndarray
输出数组,包含arr.ravel()中非零的元素的索引。

代码 #1 :

# Python program explaining
# flatnonzero() function
  
import numpy as geek
arr = geek.arange(-3, 4)
  
print ("Input  array : ", arr)
    
out_arr = geek.flatnonzero(arr)
print ("Indices of non zero elements : ", out_arr) 

输出 :

Input  array :  [-3 -2 -1  0  1  2  3]
Indices of non zero elements :  [0 1 2 4 5 6]

代码 #2 :使用非零元素的索引作为索引阵列。

# Python program using the indices of the non-zero 
# elements as an index array to extract these elements
  
out_arr = arr.ravel()[geek.flatnonzero(arr)]
  
print ("Output array of non-zero number: ", out_arr) 

输出 :

Output array of non-zero number:  [-3 -2 -1  1  2  3]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程