I have a 2D numpy array that looks like this
array([[x1,x2,x3,x4],
[x2,x3,x4,x5],
[x3,x4,x5,x6],
[y1,y2,y3,y4],
[y2,y3,y4,y5],
[y3,y4,y5,y6],])
I want to interlace the rows such that the array to look like this
array([[x1,x2,x3,x4],
[y1,y2,y3,y4],
[x2,x3,x4,x5],
[y2,y3,y4,y5],
[x3,x4,x5,x6],
[y3,y4,y5,y6],])