I have a 3d array (lets name it a) with shape = (365, 28, 36). I consider this array as an 3d array with 365 pieces of 2d arrays (28,36) stacked on each other. I want now to loop through this 3d array and each 2d slice should be repeated 8 times and then stacked on each other. This means that I will end up with one array of size (2920, 28, 36). 2920 comes from 365*8.
My attempt so far has been this, but it does not work. Can anyone help with this problem?
l = []
for i in range(365):
for j in range(28):
for k in range(30):
l.extend(repeat(a[i,j,k], 8))
Arrays in python are actually lists, which mean they are variable length, so you can just do this.
oldarray
is your old 3d array,newarray
is your desired output, and arr2d is the 2d array insideoldarray
.