I have this array of arrays :
array = [["z1", "y1", "x1"], ["z2", "y2", "x2"], ["z3", "y3", "x3"], ["z4", "y4" , "x4"]]
I want to be able to retrieve elements of the array within the bigger array by an index and putting them in a variable.
For example for the index 1 the output should be :
output = [["y1"], ["y2"], ["y3"], ["y4"]]
I want also after that to be able to push these results to form a new array. In other words, I want to re-order the elements of the array (if you could find a better solution than retrieving and pushing).
Example :
output_x = [["x1"], ["x2"], ["x3"], ["x4"]]
output_y = [["y1"], ["y2"], ["y3"], ["y4"]]
output_z = [["z1"], ["z2"], ["z3"], ["z4"]]
So the final result should look like :
result = [["x1", "y1", "z1"], ["x2", "y2", "z2"], ["x3", "y3", "z3"], ["x4", "y4" , "z4"]]
I really want to find a solution for this.
Thank you
PS : x,y and z are coordinates. Forget about sorting them
You just want
Array#transpose, which is the inverse ofArray#zip:From there, it’s easy enough to split those into individual arrays. If you just want to translate the arrays into XYZ (rather than ZYX), then you may perhaps want to just map the reversed arrays:
You could also just map an arbitrary order. For example, to map from your ZYX to XZY, you would use: