在numpy中,數組可能具有包含字段的數據類型,類似於電子表格中的列。一個例子是[(a, int), (b, float)]
,其中數組中的每個條目都是一對(int,float)。通常,這些屬性是使用字典查找(例如,arr['a'] and arr['b']
。記錄數組允許使用以下方式將字段作為數組的成員進行訪問arr.a and arr.b
。
numpy.recarray.dot()函數返回兩個記錄數組的乘積。
用法: numpy.recarray.dot(arr, out=None)
參數:
arr :第二個記錄數組。
out :[ndarray,可選]將結果存儲到的位置。
->如果提供,則必須具有廣播輸入的形狀。
->如果未提供或沒有,則返回新分配的數組。
Return :除非指定out,否則將返回保存結果的新數組,在這種情況下將返回該數組。
代碼1:
# Python program explaining
# numpy.recarray.dot() method
# importing numpy as geek
import numpy as geek
# creating 2 input array with 2 different field
in_arr1 = geek.array([[(5.0, 2), (3.0, -4), (6.0, 9)],
[(9.0, 1), (5.0, 4), (-12.0, -7)]],
dtype =[('a', float), ('b', int)])
in_arr2 = geek.array([[(2.0, 1), (4.0, -3)],
[(8.0, 3), (6.0, 5)],
[(6.0, -5), (-5.0, 4)]],
dtype =[('a', float), ('b', int)])
print ("1st Input array:", in_arr1)
print ("2nd Input array:", in_arr2)
# convert it to a record array,
# using arr.view(np.recarray)
rec_arr1 = in_arr1.view(geek.recarray)
print("1st Record array of float:", rec_arr1.a)
print("1st Record array of int:", rec_arr1.b)
rec_arr2 = in_arr2.view(geek.recarray)
print("2nd Record array of float:", rec_arr2.a)
print("2nd Record array of int:", rec_arr2.b)
# applying recarray.dot methods
# between two float record array
out_arr1 = rec_arr1.a.dot( rec_arr2.a)
print ("Output float array :", out_arr1)
# applying recarray.dot methods
# between two int record array
out_arr1 = rec_arr1.b.dot( rec_arr2.b)
print ("Output int array :", out_arr1)
輸出:
1st Input array: [[( 5., 2) ( 3., -4) ( 6., 9)] [( 9., 1) ( 5., 4) (-12., -7)]] 2nd Input array: [[( 2., 1) ( 4., -3)] [( 8., 3) ( 6., 5)] [( 6., -5) (-5., 4)]] 1st Record array of float: [[ 5. 3. 6.] [ 9. 5. -12.]] 1st Record array of int: [[ 2 -4 9] [ 1 4 -7]] 2nd Record array of float: [[ 2. 4.] [ 8. 6.] [ 6. -5.]] 2nd Record array of int: [[ 1 -3] [ 3 5] [-5 4]] Output float array : [[ 70. 8.] [-14. 126.]] Output int array : [[-55 10] [ 48 -11]]
相關用法
- Python numpy.cov()用法及代碼示例
- Python numpy.copyto()用法及代碼示例
- Python Numpy MaskedArray.any()用法及代碼示例
- Python Numpy MaskedArray.var()用法及代碼示例
- Python Numpy MaskedArray.sum()用法及代碼示例
- Python numpy.issubsctype()用法及代碼示例
- Python Numpy MaskedArray.std()用法及代碼示例
- Python Numpy MaskedArray.mean()用法及代碼示例
- Python Numpy recarray.put()用法及代碼示例
- Python Numpy recarray.ptp()用法及代碼示例
- Python Numpy MaskedArray.all()用法及代碼示例
- Python Numpy MaskedArray.dot()用法及代碼示例
- Python Numpy recarray.all()用法及代碼示例
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 Numpy recarray.dot() function | Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。