I am working on nearest neighbor search project and I need distance metrics such as Euclidian, Manhatan, etc. I can either implement them myself or, I was wondering if there is standard java code I could use?
Thanks
|
I am working on nearest neighbor search project and I need distance metrics such as Euclidian, Manhatan, etc. I can either implement them myself or, I was wondering if there is standard java code I could use? Thanks |
|||
|
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Take a look at Apaches ArrayRealVector which implements the RealVector-Interfaces. There you have implementations for L-1, L-inf and euklidian norm and metrik for an n-dimensional vector. |
|||||
|
|
The Manhattan distance is easy to implement with Although you can use
If you must expand this to higher dimensions, pass coordinates as arrays, and use a loop to compute the sum of squares. |
|||||||||||||||
|
|
Some wheels are too small to bother trying not to reinvent.
Usage:
|
||||
|