get-euclidean-distance

Calculate euclidean distance in arbitrary dimensions

Usage no npm install needed!

<script type="module">
  import getEuclideanDistance from 'https://cdn.skypack.dev/get-euclidean-distance';
</script>

README

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