Let's say I have a bunch of 2d arrays shape (32,32) that I want to be apart of a larger 3d array.
I don't know how many 2d arrays there are so they must be appended.
I've tried stacking but that only works for the first 2 arrays.
What I want is to have a big array of shape (0, 32, 32) that when I append the first 2d array will become (1, 32, 32) then (2, 32, 32) but so far nothing has worked for me.