Hi, It's not relevant to the point of this discussion all that much, but:
> a[a < 0] = 0 > a[less(a, 0)] = 0 Instead I've been doing something like: a[where(a < 0)] = 0 I didn't realized you could do it the other way. Is there a difference somewhere between the two, or are they interchangeable? I kind of like the shorter way (sans where clause) better ... Thanks, -steve _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
