+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)

Related questions

0 votes
0 votes
asked Oct 30, 2019 in DBMS by rajeshsharma
+1 vote
asked Jul 9, 2021 in NumPy by rajeshsharma
...