I have following 2D array:
MyData = array([x = [ 82, 210, 203, 234, 135, 92, 176, 146, 246, 35, 257, 227, 258,
132, 31, 160, 269, 24, 248, 274, 281, 279, 71, 21, 188, 163,
243],
y = [ 15, 16, 18, 18, 19, 21, 23, 29, 35, 47, 50, 53, 60,
64, 67, 69, 77, 88, 89, 91, 105, 115, 138, 175, 178, 205,
207]], dtype=int64)
I want to remove all the x and y pairs that are in specific Euclidean distance from each other.
For example, here, (210,16) and (203,18) have distance less than 10 and both should be removed.
However, before doing so, I need all the distances first (which is easy), and then I have to remove them.
So, I have created this matrix of distances:
distance = np.zeros((27,27))
for i in range (0 , 27):
for j in range (0 , 27):
dist= np.linalg.norm(MyData[:,i] - MyData[:,j])
distance[i,j] = dist
then using following conditions, i have found my indexes:
indx = (np.where((distance > 0) & (distance <= 10)))[0]
indy = (np.where((distance > 0) & (distance <= 10)))[1]
Now, I am not sure, how to filter 'MyData' using indexes I got from indx and indy.
A solution with numpy
First prepare the data
Compute the distances for all pairs of points
Find the points with distance smaller than a threshold
Then we can plot the points
To remove the points