Borrar filtros
Borrar filtros

My question related to find the nearest point to the centroid of the each cluster?

6 visualizaciones (últimos 30 días)
after reducing the pareto set, the centroid of the clusters can be found, after finding the centroid of cluster i need to find nearest point to the centroid in each cluster. how to find nearest point to the centroid of each cluster. please suggest me with any related coding as an example.
  8 comentarios
Image Analyst
Image Analyst el 15 de Mayo de 2018
Again, I gave you code. Scroll down the page and look at it. Comment down there if you have questions on it.
Jan
Jan el 16 de Mayo de 2018
@rajesh kumar: You do not provide details, which allow to help you specifically. Please try to be much more clearer.

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 15 de Mayo de 2018
For a given centroid, try this:
distances = sqrt((x - xCentroid).^2 + (y - yCentroid).^2);
[minDistance, indexOfMin] = min(distances);
xOfClosest = x(indexOfMin);
yOfClosest = y(indexOfMin);

Categorías

Más información sobre MATLAB Parallel Server en Help Center y File Exchange.

Productos


Versión

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by