I have 2 numpy arrays like this:
a = [[a,b,c],
[d,e,f]]
b = [[g,h,i],
[k,l,m]]
I want to merge them into another numpy array, something like following:
c = [[[a,g],[b,h],[c,i]],
[[d,k],[e,l],[f,m]]]
How can I do it?