Effacer les filtres
Effacer les filtres

selection of equal distances points from a set of points ?

9 vues (au cours des 30 derniers jours)
Abdelwahab Fawzy
Abdelwahab Fawzy le 11 Juil 2016
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

Réponse acceptée

KSSV
KSSV le 11 Juil 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 commentaires
KSSV
KSSV le 11 Juil 2016
yes.....it is a function.....
Abdelwahab Fawzy
Abdelwahab Fawzy le 11 Juil 2016
Modifié(e) : Abdelwahab Fawzy le 11 Juil 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

Connectez-vous pour commenter.

Plus de réponses (1)

Andrei Bobrov
Andrei Bobrov le 11 Juil 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!

Translated by