Borrar filtros
Borrar filtros

Order Points for plotting

12 visualizaciones (últimos 30 días)
Ahmed Abdulla
Ahmed Abdulla el 24 de Mayo de 2022
Comentada: Ahmed Abdulla el 24 de Mayo de 2022
I have the coordinates of the above two shapes imported from a CAD software, however when I plot the shape the points are not in order. Is there a method to order the coordinates so that points on the perimeter of the shape that are side by side are next to each other in the matrix.
If there is any mathematical method that would help me, I am willing to understand it and code it myself. Thank you
  5 comentarios
Walter Roberson
Walter Roberson el 24 de Mayo de 2022
use a different shrink factor?
Ahmed Abdulla
Ahmed Abdulla el 24 de Mayo de 2022
@Walter Roberson Here I am using a shrink factor of 1 which is the highest I can go :(

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 24 de Mayo de 2022
load('A.mat') ;
x = A(:,1) ; y = A(:,2) ;
n = length(x) ;
iwant = zeros(n,2) ;
i = 1 ;
iwant(i,:) = [x(i) y(i)] ;
x(i) = [] ; y(i) = [] ;
while ~isempty(x)
i = i+1;
idx = knnsearch([x y],iwant(i-1,:));
iwant(i,:) = [x(idx) y(idx)] ;
x(idx) = [] ; y(idx)= [];
end
iwant(end+1,:) = iwant(1,:) ;
plot(iwant(:,1),iwant(:,2))
  3 comentarios
KSSV
KSSV el 24 de Mayo de 2022
Editada: KSSV el 24 de Mayo de 2022
Lets randomize the points and run the code.
load('A.mat') ;
x = A(:,1) ; y = A(:,2) ;
n = length(x) ;
idx = randperm(n,n) ;
x = x(idx) ; y = y(idx) ;
iwant = zeros(n,2) ;
i = 1 ;
iwant(i,:) = [x(i) y(i)] ;
x(i) = [] ; y(i) = [] ;
while ~isempty(x)
i = i+1;
idx = knnsearch([x y],iwant(i-1,:));
iwant(i,:) = [x(idx) y(idx)] ;
x(idx) = [] ; y(idx)= [];
end
iwant(end+1,:) = iwant(1,:) ;
plot(iwant(:,1),iwant(:,2))
Ahmed Abdulla
Ahmed Abdulla el 24 de Mayo de 2022
Thank you @KSSV for your efforts I really appreciate it. Unfortunately this doesnt work every time and I am trying to make a generalised function that will work for any shape and at all times

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by