We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vector-dot returns the dot product (inner product) of two vectors
Example 1: Calculate the dot product of two vectors, and show equivalent list form.
> (vector-dot (vector 1 2 3 4) (vector 1 2 3 4)) 30 > (list-dot (list 1 2 3 4) (list 1 2 3 4)) 30