Calculates the inner product between two sets of data points.
npm install --save atlas-dot
Breaking up atlas-dataset into standalone functions. This module contains the dot product:
const dot = require("atlas-dot")
console.log(dot([1,2]))
// 5 ...
console.log(dot([1,2], [3,4]))
// 11Input checking is the responsibility of the caller. Make sure your arrays contain numbers and are of the same length.
