I have three numpy arrays, respectively with shape:
x1 = (30, 17437)
x2 = (30, 24131)
x3 = (30, 19782)
I would like to concatenate them and create a numpy array of dimension (30, 61350). I tried with
labels = np.concatenate((x1, x2, x3))
but I got the error:
all the input array dimensions for the concatenation axis must match exactly, but along dimension 1, the array at index 0 has size 17437 and the array at index 1 has size 24131