numpy数组矩阵相乘的多种方式
Posted higgerw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numpy数组矩阵相乘的多种方式相关的知识,希望对你有一定的参考价值。
1. numpy.ndarray类型乘积
1.1 矩阵乘法
a@b
np.dot(a, b)
n
p.matmul(a, b)
1.2 对应位置元素相乘
a*b
np.multiply(a, b)
2.numpy.matrix类型乘积
2.1 矩阵乘法
a@b
a*b
np.dot(a, b)
n
p.matmul(a, b)
2.2 对应位置元素相乘
np.multiply(a, b)
以上是关于numpy数组矩阵相乘的多种方式的主要内容,如果未能解决你的问题,请参考以下文章