np.dot(),二维情况下

来源:http://www.javashuo.com/article/p-xfidxsbh-bu.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] ]   计算方法: 结算过程,
相关文章
相关标签/搜索