dot(a, b)

Dot product of two vectors.

dot([1,2,3],[4,5,6])
aVector 1.
bVector 2.
return valueThe dot product of the vectors.

The vectors can be both row or column vectors.