赞
踩
在将两个维度相同的矩阵做点乘运算时,
result = A*A #设A的维度是(10000,20)
报错ValueError: shapes (10000,20) and (10000,20) not aligned: 20 (dim 1) != 10000 (dim 0),
将代码改为
result = np.multiply(A,A)
成功解决。