I have two arrays of arrays:
[array[(1, 2, 3)],
array[(4, 5, 6, 7)],
array[(8, 9, 9.5)]]
[array[(10, 11, 12)],
array[(13, 14, 15)],
array[(16, 17, 18, 19)]]
What I need to have is:
[[array([1, 2, 3]),
array([10, 11, 12])],
[array([4, 5, 6, 7]),
array([13, 14, 15])],
[array([7, 8, 9.5]),
array([16, 17, 18, 19])]]
I can do by looping into the two arrays but it not really productif, any idea guys on how I could do that without looping? many thanks for any advice!