numpy数组矩阵相乘的多种方式

Posted higgerw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numpy数组矩阵相乘的多种方式相关的知识,希望对你有一定的参考价值。

1. numpy.ndarray类型乘积

1.1 矩阵乘法

a@b

np.dot(a, b)

np.matmul(a, b)

1.2 对应位置元素相乘

a*b

np.multiply(a, b)

2.numpy.matrix类型乘积

2.1 矩阵乘法

a@b

a*b

np.dot(a, b)

np.matmul(a, b)

 

2.2 对应位置元素相乘

np.multiply(a, b)

以上是关于numpy数组矩阵相乘的多种方式的主要内容,如果未能解决你的问题,请参考以下文章

如何将两个向量相乘并得到一个矩阵?

Python Numpy矩阵乘法使用循环将多个矩阵相乘

numpy矩阵向量乘法[重复]

numpy中数组(矩阵)的乘法

numpy中的广播机制

Numpy:点积和 dot() 矩阵相乘