I have a 2D numpy array that represents the coordinates (x, y) of a curve, and I want to split that curve into parts of the same length, obtaining the coordinates of the division points.
The most easy example is a line defined for two points, for example [[0,0],[1,1]], and if I want to split it in two parts the result would be [0.5,0.5], and for three parts [[0.33,0.33],[0.67,0.67]] and so on.
How can I do that in a large array where the data is less simple? I'm trying to split the array by its length but the results aren't good.
If I understand well, what you want is a simple interpolation. For that, you can use
scipy.interpolate
(http://docs.scipy.org/doc/scipy/reference/tutorial/interpolate.html):You can create a function that returns the coordinates of the split points, given
x
,y
and the number of desired points:For example,
Note that x and y are numpy arrays and not lists.