Borrar filtros
Borrar filtros

selection of equal distances points from a set of points ?

9 visualizaciones (últimos 30 días)
Abdelwahab Fawzy
Abdelwahab Fawzy el 11 de Jul. de 2016
Editada: Abdelwahab Fawzy el 11 de Jul. de 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

Respuesta aceptada

KSSV
KSSV el 11 de Jul. de 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 comentarios
KSSV
KSSV el 11 de Jul. de 2016
yes.....it is a function.....
Abdelwahab Fawzy
Abdelwahab Fawzy el 11 de Jul. de 2016
Editada: Abdelwahab Fawzy el 11 de Jul. de 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

Iniciar sesión para comentar.

Más respuestas (1)

Andrei Bobrov
Andrei Bobrov el 11 de Jul. de 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