numpy.add()
當我們要計算兩個數組的相加時使用函數。它逐個元素添加參數。如果兩個數組的形狀不相同,那就是arr1.shape != arr2.shape
,它們必須可以廣播為通用形狀(可以是一個或另一個的形狀)。
用法: numpy.add(arr1, arr2, /, out=None, *, where=True, casting=’same_kind’, order=’K’, dtype=None, subok=True[, signature, extobj], ufunc ‘add’)
參數:
arr1 :[數組或標量]輸入數組。
arr2 :[數組或標量]輸入數組。
out :[ndarray,可選]將結果存儲到的位置。
->如果提供,則必須具有廣播輸入的形狀。
->如果未提供或沒有,則返回新分配的數組。
where :[數組,可選]值為True表示要在該位置計算ufunc,值為False表示將值保留在輸出中。
**kwargs:允許將關鍵字可變長度的參數傳遞給函數。當我們要處理函數中的命名參數時使用。
Return :[ndarray或標量] arr1和arr2之和,按元素方式。如果arr1和arr2均為標量,則返回一個標量。
代碼1:工作
# Python program explaining
# numpy.add() function
# when inputs are scalar
import numpy as geek
in_num1 = 10
in_num2 = 15
print ("1st Input number:", in_num1)
print ("2nd Input number:", in_num2)
out_num = geek.add(in_num1, in_num2)
print ("output number after addition :", out_num)
輸出:
1st Input number: 10 2nd Input number: 15 output number after addition : 25
代碼2:
# Python program explaining
# numpy.add() function
# when inputs are array
import numpy as geek
in_arr1 = geek.array([[2, -7, 5], [-6, 2, 0]])
in_arr2 = geek.array([[5, 8, -5], [3, 6, 9]])
print ("1st Input array:", in_arr1)
print ("2nd Input array:", in_arr2)
out_arr = geek.add(in_arr1, in_arr2)
print ("output added array:", out_arr)
輸出:
1st Input array: [[ 2 -7 5] [-6 2 0]] 2nd Input array: [[ 5 8 -5] [ 3 6 9]] output added array: [[ 7 1 0] [-3 8 9]]
相關用法
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy.add() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。