ml-distance
Version:
Distance and similarity functions to compare vectors
18 lines • 507 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
*Returns the Jeffreys distance between vectors a and b
* @link [Jeffreys algorithm](https://www.naun.org/main/NAUN/ijmmas/mmmas-49.pdf)
* @param a - first vector
* @param b - second vector
*
*/
function jeffreys(a, b) {
let ans = 0;
for (let i = 0; i < a.length; i++) {
ans += (a[i] - b[i]) * Math.log(a[i] / b[i]);
}
return ans;
}
exports.default = jeffreys;
//# sourceMappingURL=jeffreys.js.map