向量距离

计算两个向量之间的距离。

  • 使用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