I have arrays of size A (1, 1, 59) and B (1, 95, 59). I want to concatenate the arrays. The size of the array should be (1, 96, 59).
np.concatenate((A, B),axis =0)
Doesn't work. The error is ValueError: all the input array dimensions except for the concatenation axis must match exactly