+1 vote
in NumPy by
Explain Linear algebra

1 Answer

0 votes
by
Dot product: product of two arrays

f = np.array([1,2])

g = np.array([4,5])

### 1*4+2*5

np.dot(f, g)
...