I have an array of nested arrays, I need to create new arrays made up of the elements in corresponding index positions. Kind of hard to explain but here is what I'm starting with and what I need to produce:
arrays = [
[["ab", "cd", "ef", "gh"], ["ik", "lm", "no", "pq"],
["rs", "tu", "vw", "xy"]],
[["z1", "23", "45", "67"],["89", "AB", "CD", "EF"],["GH", "IJ", "KL", "MN"]]
]
goal = [
[["ab", "ik", "rs"], ["cd", "lm", "tu"], ["ef", "no", "vw"], ["gh", "pq", "xy"]],
[["z1", "89", "GH"], ["23", "AB", "IJ"], ["45", "CD", "KL"], ["67", "EF", "MN"]]
]
transposehad @Jörg not already done so.