1.0.0 • Published 8 years ago

euclidean-distance v1.0.0

Weekly downloads
2,700
License
MIT
Repository
github
Last release
8 years ago

Euclidean Distance Build Status

euclidean-distance is a browserify-friendly npm module for calculating the Euclidean distance

between two vectors in n-dimensional space.

Installation

npm install euclidean-distance --save

Usage

var distance = require('euclidean-distance')

distance([0,0], [1,0])
// 1

distance([0,0], [3,2])
// 3.605551275463989

distance([-7,-4,3], [17, 6, 2.5])
// 26.004807247892

distance([5,13,17,3,25,21,7,1], [20,26,7,5,28,3,23,10])
// 34.17601498127012

For some purposes you may actually be looking for the square of the distance. For that, you can use:

var distanceSquared = require('euclidean-distance/squared')

distanceSquared([0,0], [2,0])
// 4

Test

npm test

License

WTFPL