I have two numpy arrays of the form np.array([1,2,3])) I want to concatenate them so I get:
[[1,2,3],[4,5,6]]
and it also has to work when there is a numpy array of the form [[1,2,3],[4,5,6]] and another one [7,8,9] and I want to get:
[[1,2,3],[4,5,6],[7,8,9]]
I tried np.concatenate but I couldn't get it to work
concatenatedocs. :)