I have two 2D numpy arrays:
a = np.array([[0,1,2,3,4],
[0,1,2,3,4],
[0,1,2,3,4]
...
])
b = np.array([[0,0,0,0,0],
[1,1,1,1,1],
[2,2,2,2,2],
...
])
How would I be able to get a numpy array where each exact index will concatenate together?
OUT:
[[0,0], [1,0], [2,0], [3,0], [4,0] [0,1], [1,1], [2,1], [3,1], [4,1] ...]