Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get a better grip on numpy arrays, so I have a sample question to ask about them:

Say I have a numpy array called a. I want to perform an operation on a that increments all the values inside it that are less than 0 and leaves the rest alone. for example, if I had:

a = np.array([1,2,3,-1,-2,-3])

I would want to return:

([1,2,3,0,-1,-2])

What is the most compact syntax for this?

Thanks!

share|improve this question
1  
for a readable tutorial, see scipy.org/Cookbook/Indexing – Denis Aug 5 '10 at 11:41

2 Answers

up vote 11 down vote accepted
In [45]: a = np.array([1,2,3,-1,-2,-3])

In [46]: a[a<0]+=1

In [47]: a
Out[47]: array([ 1,  2,  3,  0, -1, -2])
share|improve this answer
Thanks a ton ~unutbu! – pr0crastin8r Aug 4 '10 at 20:07
@pr0crastin8r: You're welcome! – unutbu Aug 4 '10 at 20:22

To mutate it:

a[a<0] += 1

To leave the original array alone:

a+[a<0]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.