2020-06-02
描述
返回两个向量之间的距离。
提示
- 使用
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