![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/724649/image.jpeg)
How to order a set of unordered points
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sparsh garg
am 30 Aug. 2021
Kommentiert: sparsh garg
am 18 Okt. 2021
I have a set of unordered points,would appreciate it if some advice can be given on how to reorder them,so that when you draw a line plot the result is continous
Basically,i would like to apply the idea behind RRT.
In RRT,we randomly choose a point,and then find its closest neighbour.We then connect the start point to that neighbour and do tha till we reach the goal.
Given the below img,do you think that idea will work here.
Side note: I have already computed the nearest neigbours for all the points using this,and would appreciate it if we can combine my approach with the one I am talking about in this post.
For ref encosed is the unordered point image as well as the points file
https://in.mathworks.com/matlabcentral/answers/482865-finding-the-10-nearest-points-to-every-point-with-corresponding-distances-within-a-single-variable![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/724619/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/724619/image.png)
0 Kommentare
Akzeptierte Antwort
Wan Ji
am 30 Aug. 2021
Bearbeitet: Wan Ji
am 30 Aug. 2021
Use boundary(x,y) function
load('pts.mat');
x=X_pts(:,1);
y = X_pts(:,2);
k = boundary(x,y,1);
plot(x(k),y(k))
set(gca,'YDir','reverse')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/724649/image.jpeg)
7 Kommentare
Wan Ji
am 31 Aug. 2021
I have got some answer from others
See the attached files @sparsh garg
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!