Clear Filters
Clear Filters

selection of equal distances points from a set of points ?

9 views (last 30 days)
assume a list of points or nodes. each one of them has x and y coordinates . the distance between two points i and j equal D(i,j)= sqrt((xi-xj)^2+(yi-yj)^2).
now, i want to select a set of these nodes which have equal distances between them (the inter-distance is specified previously --> d). hence the selected points are uniformly distributed

Accepted Answer

KSSV
KSSV on 11 Jul 2016
Try to doc knnsearch.....knnsearch gives you nearest neighbors of the given set of points lying at a specified distance given as input.
  3 Comments
Abdelwahab Fawzy
Abdelwahab Fawzy on 11 Jul 2016
Edited: Abdelwahab Fawzy on 11 Jul 2016
thanx for help, it is used for selection of the nearest neighbor nodes from a given location.
but i still need to select a number of nodes which are separated by an equal distance from each other (d) for example points (A B C D) where, AB~=AC~=AD~=BC~=BD~=CD =d

Sign in to comment.

More Answers (1)

Andrei Bobrov
Andrei Bobrov on 11 Jul 2016
[ii,jj] = find(triu(D == d));

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!