Skip to content Skip to sidebar Skip to footer

Adding Through An Array With Np.where Function Numpy Python

I am trying to write a function where it adds the Sequence one at a time until the Number is reached. So since the the sum of the Sequence array is 21 and not 45 it will add the fi

Solution 1:

I'm not convinced this can be done as a one-liner. The second and third parameters to np.where are supposed to be sequences. It's easy as a loop:

seq45 = []
for n in itertools.cycle(Sequence):
    seq45.append(n)
    if sum(seq45) >= 45: break

Post a Comment for "Adding Through An Array With Np.where Function Numpy Python"