Test Notebook


In [1]:
import numpy as np
a = np.array([1, 2, 3])
b = np.array([2, 3, 4])
np.dot(a, b)


Out[1]:
20

In [ ]: