Tagged Questions
0
votes
0answers
22 views
Pruning a list of points to find the largest clique of points with a minimum threshold point-to-point Euclidean distance [duplicate]
I have a array of points (which we'll just create randomly here):
pointList = Table[{RandomReal[{0, 5}], RandomReal[{0, 5}]}, {i, 1, 100}];
I'd like to find the ...