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


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


numpy.floor_divide(arr1,arr2,/,out =沒有,其中=真正,cast ='same_kind‘,order =‘ķ‘,dtype = None):

將第一個數組中的數組元素除以第二個數組中的元素(所有操作均按元素進行)。 arr1和arr2必須具有相同的形狀。
它等效於Python //運算符,並與Python%(餘數)函數配對,因此b = a%b + b *(a //b)直至四舍五入。

參數:


arr1     : [array_like]Input array or object which works as numerator.

arr2     : [array_like]Input array or object which works as denominator. 

out      : [ndarray, None, optional]Output array with same dimensions as
           Input array, placed with result.

**kwargs : Allows you to pass keyword variable length of argument to a function. 
            It is used when we want to handle named argument in a function.

where    : [array_like, optional]True value means to calculate the universal 
            functions(ufunc) at that position, False value means to leave the 
            value in the output alone.

返回:

An array with floor(x1 / x2)


代碼1:arr1除以arr2

# Python program explaining 
# floor_divide() function 
import numpy as np 
  
# input_array 
arr1 = [2, 2, 2, 2, 2] 
arr2 = [2, 3, 4, 5, 6] 
print ("arr1         : ", arr1) 
print ("arr1         : ", arr2) 
  
# output_array 
out = np.floor_divide(arr1, arr2) 
print ("\nOutput array : ", out)

輸出:

arr1         :  [2, 2, 2, 2, 2]
arr1         :  [2, 3, 4, 5, 6]

Output array :  [1 0 0 0 0]


代碼2:arr1的元素除以除數

# Python program explaining 
# floor_divide() function 
import numpy as np 
  
# input_array 
arr1 = [2, 7, 3, 11, 4] 
divisor = 3
print ("arr1         : ", arr1) 
  
# output_array 
out = np.floor_divide(arr1, divisor) 
print ("\nOutput array : ", out)

輸出:

arr1         :  [2, 7, 3, 11, 4]

Output array :  [0 2 1 3 1]


代碼3:如果arr2具有-ve元素,則floor_divide處理結果

# Python program explaining 
# floor_divide() function 
import numpy as np 
  
# input_array 
arr1 = [2, 6, 21, 21, 12] 
arr2 = [2, 3, 4, -3, 6] 
print ("arr1         : ", arr1) 
print ("arr2         : ", arr2) 
  
# output_array 
out = np.floor_divide(arr1, arr2) 
print ("\nOutput array : ", out)

輸出:

arr1         :  [2, 6, 21, 21, 12]
arr2         :  [2, 3, 4, -3, 6]

Output array :  [ 1  2  5 -7  2]

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



相關用法


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