Find the dot product of 2 or more vectors.
Rest
The vectors. (Each vector must have the same dimension)
Returns the dot product.
0.5.0
dot([1, 2], [2, 3])// => (1 * 2) + (2 * 3) => 8 Copy
dot([1, 2], [2, 3])// => (1 * 2) + (2 * 3) => 8
Find the dot product of 2 or more vectors.