Skip to content
Advertisement

Return a numpy array, with numbers of elements specified in another array

Suppose I have two numpy arrays A, B, with A.shape = (2,4,3) and B.shape = (2,4):

JavaScript

Now I would like to get a new array C with C.shape = (2+3+1,3) = (6,3), such that each integer in B specifies the number of the corresponding 3×1 array in A. In other words, A[i,j,:] should appear B[i,j] times in C. In our case,

JavaScript

What is the fastest way to obtain C?

Advertisement

Answer

I can think of doing this by reshaping A into a simple 2D array of which the rows A[i], are to be repeated according to the count in B[i].

Note that B is also flattened to be a 1D array.

JavaScript

Output:

JavaScript

Here is how np.repeat() works, in case you need reference.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement