mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2025-04-07 06:41:07 +08:00
29 lines
603 B
JavaScript
29 lines
603 B
JavaScript
/**
|
|
* @typedef {import('../matrix/Matrix.js').Matrix} Matrix
|
|
*/
|
|
|
|
import * as mtrx from '../matrix/Matrix';
|
|
|
|
/**
|
|
* Calculates the euclidean distance between 2 matrices.
|
|
*
|
|
* @param {Matrix} a
|
|
* @param {Matrix} b
|
|
* @returns {number}
|
|
* @trows {Error}
|
|
*/
|
|
const euclideanDistance = (a, b) => {
|
|
mtrx.validateSameShape(a, b);
|
|
|
|
let squaresTotal = 0;
|
|
|
|
mtrx.walk(a, (indices, aCellValue) => {
|
|
const bCellValue = mtrx.getCellAtIndex(b, indices);
|
|
squaresTotal += (aCellValue - bCellValue) ** 2;
|
|
});
|
|
|
|
return Number(Math.sqrt(squaresTotal).toFixed(2));
|
|
};
|
|
|
|
export default euclideanDistance;
|