numpy.logical_and(arr1,arr2,out = None,其中= True,鑄造='same_kind',order ='K',dtype = None,ufunc'logical_and'):這是一個邏輯函數,可幫助用戶查找arr1和arr2元素的真值。兩個陣列必須具有相同的形狀。
參數:
-
arr1 : [數組]輸入數組。
arr2 : [數組]輸入數組。 - out : [ndarray,可選]輸出數組,其尺寸與輸入數組相同,並放置在結果中。
- ** kwargs:允許您將關鍵字的可變參數長度傳遞給函數。當我們要處理函數中的命名參數時使用它。
- where : [數組,可選] True值表示在該位置計算通用函數(ufunc),False值表示將值保留在輸出中。
返回:
An array with Boolean results of arr1 and arr2 element-wise(of the same shape).
代碼1:工作
# Python program explaining
# logical_and() function
import numpy as np
# input
arr1 = [1, 3, False, 4]
arr2 = [3, 0, True, False]
# output
out_arr = np.logical_and(arr1, arr2)
print ("Output Array : ", out_arr)
輸出:
Output Array : [ True False False False]
代碼2:如果輸入數組的形狀不同,則值錯誤
# Python program explaining
# logical_and() function
import numpy as np
# input
arr1 = [8, 2, False, 4]
arr2 = [3, 0, True, False, 8]
# output
out_arr = np.logical_and(arr1, arr2)
print ("Output Array : ", out_arr)
輸出:
ValueError:operands could not be broadcast together with shapes (4,) (5,)
參考文獻:
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.logical_and.html#numpy.logical_and
。
相關用法
注:本文由純淨天空篩選整理自Mohit Gupta_OMG 大神的英文原創作品 numpy.logical_and() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。