I’m learning Numpy. Here are some notes:

Dot Product

a = [1, 2, 3]
b = [10, 20, 30]
numpy.dot(a,b)
  • Reminder: Dot product of a,b is 110 + 220 + 3*30