两个向量的距离怎么算,怎么计算两个向量的距离

首页 > 实用技巧 > 作者:YD1662023-10-29 00:36:12

两个向量的距离怎么算,怎么计算两个向量的距离(1)

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

JavaScript

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

更多内容请访问我的网站:https://www.icoderoad.com

栏目热文

文档排行

本站推荐

Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.