Want to make large array, B, that is made up of a smaller numpy array, A, flipped in different ways:
B[0,:,:,:,:] = A
B[1,:,:,:,:] = B[0,:,::-1,:,:]
B[2:4,:,:,:,:] = B[0:2,:,:,::-1,:]
B[4:8,:,:,:,:] = B[0:4,:,:,:,::-1]
Is there a way to only store A in memory, but keep some of the functionality of a numpy array for B? I was primarily interested in two things:
- Be able to scale B[m,n,...] (i.e. B[m,n,...] *= C where B.shape[2:] == C.shape)
- Be able sum down to the second dimension (i.e. np.sum(B, axis=(2,3,4)))
What I ended up doing was creating a class to return a view of an arbitrarily reflected portion of A. I was doing scaling by C, as well as sums, after returning this view, which seemed quick enough for now. This is it without error checking: