向量距离
计算两个向量之间的距离。
- 使用
Array.prototype.reduce()
、Math.pow()
和Math.sqrt()
来计算两个向量之间的欧几里德距离。
const vectorDistance = (x, y) =>
Math.sqrt(x.reduce((acc, val, i) => acc + Math.pow(val - y[i], 2), 0));
vectorDistance([10, 0, 5], [20, 0, 10]); // 11.180339887498949