What I want to do is to sort these coordinates points:
Measured coordinates (x,y)= (2,2),(2,3),(1,2),(1,3),(2,1),(1,1),(3,2),(3,3),(3 ,1)
I need to get sequences or trajectories of this points to follow them by iteration.
|
What I want to do is to sort these coordinates points: Measured coordinates (x,y)= (2,2),(2,3),(1,2),(1,3),(2,1),(1,1),(3,2),(3,3),(3 ,1) I need to get sequences or trajectories of this points to follow them by iteration. |
|||||||||
|
But from you comment, I understand you actually need something to reconstruct a path and iteratively find the closest neighbour of the last found point (of the reconstructed path so far). The following is how I would solve this problem (using pdist2 for calculating the distances between all the points for easiness):
which results in:
being the indices to consecutive points on the curve. Here's a plot of this result:
As @mathematician1975 already mentioned, there can be equal distances to a point. This is solved here by using 2nd remark: I don't know how this will behave when using large input data matrices, probably a bit slow because of the loop, which you can't avoid. I still see room for improvement, but that's up to you ;) |
||||
|
|
|
Create a matrix from your points so that you have something like
then try
to get a matrix with rows that are your points ordered by
to get a matrix with rows that are your points ordered by their 'y' value. If your points are ordered with respect to some other ordering parameter (such as time) then sorting will not work unless you remember the order that they were created in. |
|||
|
|