In this chapter, we will discuss about NumPy-inner. This function returns the inner product of vectors for 1-D arrays. For higher dimensions, it returns the sum-product over the last axes.
Example Of NumPy-inner
import numpy as np print np.inner(np.array([1,2,3]),np.array([0,1,0])) # Equates to 1*0+2*1+3*0
It will output −
2
Example
# Multi-dimensional array example import numpy as np a = np.array([[1,2], [3,4]]) print 'Array a:' print a b = np.array([[11, 12], [13, 14]]) print 'Array b:' print b print 'Inner product:' print np.inner(a,b)
It will output −
Array a: [[1 2] [3 4]] Array b: [[11 12] [13 14]] Inner product: [[35 41] [81 95]]
In the above case, the inner product is calculated as −
1*11+2*12, 1*13+2*14 3*11+4*12, 3*13+4*14
Next Topic – Click Here
Pingback: NumPy-vdot - Adglob Infosystem Pvt Ltd .................
Thanks for the blog article.Really looking forward to read more. Will read on…