74 lines
2.0 KiB
JavaScript

'use strict'
import { arraySize as size } from '../../utils/array'
import { factory } from '../../utils/factory'
const name = 'dot'
const dependencies = ['typed', 'add', 'multiply']
export const createDot = /* #__PURE__ */ factory(name, dependencies, ({ typed, add, multiply }) => {
/**
* Calculate the dot product of two vectors. The dot product of
* `A = [a1, a2, a3, ..., an]` and `B = [b1, b2, b3, ..., bn]` is defined as:
*
* dot(A, B) = a1 * b1 + a2 * b2 + a3 * b3 + ... + an * bn
*
* Syntax:
*
* math.dot(x, y)
*
* Examples:
*
* math.dot([2, 4, 1], [2, 2, 3]) // returns number 15
* math.multiply([2, 4, 1], [2, 2, 3]) // returns number 15
*
* See also:
*
* multiply, cross
*
* @param {Array | Matrix} x First vector
* @param {Array | Matrix} y Second vector
* @return {number} Returns the dot product of `x` and `y`
*/
return typed(name, {
'Matrix, Matrix': function (x, y) {
return _dot(x.toArray(), y.toArray())
},
'Matrix, Array': function (x, y) {
return _dot(x.toArray(), y)
},
'Array, Matrix': function (x, y) {
return _dot(x, y.toArray())
},
'Array, Array': _dot
})
/**
* Calculate the dot product for two arrays
* @param {Array} x First vector
* @param {Array} y Second vector
* @returns {number} Returns the dot product of x and y
* @private
*/
// TODO: double code with math.multiply
function _dot (x, y) {
const xSize = size(x)
const ySize = size(y)
const len = xSize[0]
if (xSize.length !== 1 || ySize.length !== 1) throw new RangeError('Vector expected') // TODO: better error message
if (xSize[0] !== ySize[0]) throw new RangeError('Vectors must have equal length (' + xSize[0] + ' != ' + ySize[0] + ')')
if (len === 0) throw new RangeError('Cannot calculate the dot product of empty vectors')
let prod = 0
for (let i = 0; i < len; i++) {
prod = add(prod, multiply(x[i], y[i]))
}
return prod
}
})