Borrar filtros
Borrar filtros

How to find the distance between vectors given in a cell array?

1 visualización (últimos 30 días)
say i have a cell array in the form p = {[x1, y1], [x2, y2],...,[xn, yn]}
i want to find the number of points that arent within r distance of eachother. I know that pdist will find the distance between points but im not sure how to break this cell array up in order to apply this function. Any help?

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 12 de Nov. de 2020
You can apply pdist() like this
p = {[x1, y1], [x2, y2], [x3, y3]};
P = vertcat(P{:});
D = pdist(P);
  2 comentarios
That Guy
That Guy el 12 de Nov. de 2020
thats exactly what i was looking for! thanks!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by