+10 XP
Code: Dot Product
Question 1 of 2
What does np.dot(w, r) return? Type the number.
python
w = np.array([4, 3, 1]) r = np.array([15, 7, 3]) result = np.dot(w, r) # result =
Code: Dot Product
Question 1 of 2
What does np.dot(w, r) return? Type the number.
w = np.array([4, 3, 1]) r = np.array([15, 7, 3]) result = np.dot(w, r) # result =