Open In App

Python | Numpy np.ma.innerproduct() method

With the help of np.ma.innerproduct() method, we can calculate the vector product of two list by using np.ma.innerproduct() method.

Syntax : np.ma.innerproduct()
Return : Return a vector product of two lists.



Example #1 :
In this example we can see that by using np.ma.innerproduct() method, we are able to get the value of inner product of two vectors.




# import numpy
import numpy.ma as ma
  
# using np.ma.innerproduct() method
gfg = ma.innerproduct([1, 2, 3], [5, 5, 5])
  
print(gfg)

Output :

30



Example #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)

Output :

[ 30 120]

Article Tags :