Python| Numpy np.ma.innerproduct() 方法
借助np.ma.innerproduct()
方法,我们可以使用np.ma.innerproduct()
方法计算两个列表的向量积。
Syntax : np.ma.innerproduct()
Return : Return a vector product of two lists.
示例 #1:
在这个例子中,我们可以看到通过使用np.ma.innerproduct()
方法,我们可以得到两个向量的内积值。
# import numpy
import numpy.ma as ma
# using np.ma.innerproduct() method
gfg = ma.innerproduct([1, 2, 3], [5, 5, 5])
print(gfg)
输出 :
30
示例 #2:
# import numpy
import numpy.ma as ma
# using np.ma.innerproduct() method
gfg = ma.innerproduct([[1, 2, 3], [7, 8, 9]], [5, 5, 5])
print(gfg)
输出 :
[ 30 120]