Tagged Questions
-1
votes
1answer
155 views
Euclidean distance definition [closed]
I have a question about it.
I've seen two different definitions of the Euclidean Distance.
The first one is from Wikipedia (http://en.wikipedia.org/wiki/Euclidean_distance):
...
0
votes
1answer
135 views
Proper similarity measure for clustering
I have problems in finding a proper similarity measure for clustering. I have around 3000 arrays of sets, where each set contains features of certain domain (e.g., number, color, days, alphabets, ...
1
vote
0answers
1k views
Euclidean Distance or cosine similarity?
I was reading
Similarity Measure
and suddenly my whole world was falling apart. I have implemented a search engine using Clustering Technique. For Clustering , I used K Means which has distance ...
0
votes
1answer
64 views
Finding the “tightest” subset in Euclidean space
I am given at of points x_1, x_2, ... x_n \in R^d. I wish to find a subset of k points such that the sum of the distances between these k points is minimal. Naively this is an O(n choose k) problem, ...
2
votes
4answers
1k views
Multidimensional Eucledian Distance in Python
I want to calcuate the eucledian distance in multiple dimensions (24 dimensions) between 2 arrays. I'm using Numpy-Scipy.
Here is my code:
import numpy,scipy;
A=numpy.array([116.629, 7192.6, ...
2
votes
2answers
1k views
Calculating a Voronoi diagram for planes in 3D
Is there a code/library that can calculate a Voronoi diagram for planes (parallelograms) in 3D? I checked Qhull and it seems it can only work with points, in its examples Voro++ works with different ...
0
votes
5answers
516 views
Partition neighbor points given a euclidean distance range
Given two points P,Q and a delta, I defined the equivalence relation ~=, where P ~= Q if EuclideanDistance(P,Q) <= delta. Now, given a set S of n points, in the example S = (A, B, C, D, E, F) and n ...