get-euclidean-distance

1.0.10 • Public • Published

get-euclidean-distance

flipactual Travis Codecov Node NPM

Calculate euclidean distance in arbitrary dimensions

getEuclideanDistance(d) ⇒ Number

Find the euclidean distance between two points in arbitrary dimensions.

Kind: global function
Returns: Number - The euclidean distance between the points.

Param Type Description
d Array.<Number> The distances between two points in each of the points' dimensions.

Example

const a = {
  x: 0.5,
  y: 0.1,
};
const b = {
  x: 0.25,
  y: 0.2,
};
getEuclideanDistance([
  b.x - a.x,
  a.y - b.y,
]);
// → 0.26925824035672524

Scripts

test – run the tests

npm run test

coverage – generate and view code coverage as HTML

npm run coverage

lint – lint the codebase

npm run lint

readme – generate the README

npm run readme

compile – compile the code

npm run compile

License

MIT @ Flip

Readme

Keywords

none

Package Sidebar

Install

npm i get-euclidean-distance

Weekly Downloads

10

Version

1.0.10

License

MIT

Last publish

Collaborators

  • flipactual