1. 程式人生 > >np.dot(),二維情況下

np.dot(),二維情況下

來源:https://www.cnblogs.com/chengxin1982/p/7623291.html
import numpy as np
range(0,10,1)

x = np.array([[1,3],[1,4]])
y = np.array([[2,2],[3,1]])
print (np.dot(x,y))

輸出:

[ [11 5]

[14 6] ]

 

計算方法:

結算過程, 行 * 列

1 3    2 2      1*2 + 3 * 3 1 * 2 + 3 * 1        11 5
1 4    3 1      1*2 + 4 * 3 1 * 2 + 4 * 1        14 6