I have an array of size (1, 100, 81).
I want to remove the first column of the array and I need an array of size (1, 99, 81).
How to split the array into (1, 1, 81) and (1, 99, 81). I tried using np.split() but I think I am wrong for this type of array.
Reminder: I don't want to split into halves.