當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy.logical_not()用法及代碼示例


numpy.logical_not(arr,out = None,where = True,鑄造='same_kind',order ='K',dtype = None,ufunc'logical_not'):這是一個邏輯函數,可按元素計算NOT arr的真值。

參數:

  • arr1 : [數組]輸入數組。

  • out : [ndarray,可選]輸出數組,其尺寸與輸入數組相同,並放置在結果中。
    ** kwargs:允許您將關鍵字的可變參數長度傳遞給函數。當我們要處理函數中的命名參數時使用它。
  • where : [數組,可選] True值表示在該位置計算通用函數(ufunc),False值表示將值保留在輸出中。

返回:

An array with Boolean results of NOT arr (element-wise).  

代碼1:工作

# Python program explaining 
# logical_not() function 
import numpy as np 
  
# input 
arr1 = [1, 3, False, 4] 
arr2 = [3, 0, True, False] 
  
# output 
out_arr1 = np.logical_not(arr1) 
out_arr2 = np.logical_not(arr2) 
  
print ("Output Array 1 : ", out_arr1) 
print ("Output Array 2 : ", out_arr2)

輸出:

Output Array 1 :  [False False  True False]
Output Array 2 :  [False  True False  True]


代碼2:可以檢查條件

# Python program explaining 
# logical_not() function 
import numpy as np 
  
# input 
arr1 = np.arange(8) 
  
# Applying Condition  
print ("Output : \n", arr1/4) 
  
# output 
out_arr1 = np.logical_not(arr1/4 == 0) 
  
print ("\n Boolean Output : \n", out_arr1)

輸出:

Output : 
 [ 0.    0.25  0.5   0.75  1.    1.25  1.5   1.75]

 Boolean Output : 
 [False  True  True  True  True  True  True  True]

參考文獻:
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.logical_not.html#numpy.logical_not



相關用法


注:本文由純淨天空篩選整理自Mohit Gupta_OMG 大神的英文原創作品 numpy.logical_not() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。