In article <cogan6$kt0$1 at news1.ucsd.edu>, Robert Kern wrote:
Right. "3 < data" creates an array of 0s and 1s where the condition is
false and true, respectively. You don't need where() at all.
Try
mask = logical_and(3 < data, data <= 7)
Right. "3 < data" creates an array of 0s and 1s where the condition is
false and true, respectively. You don't need where() at all.
Try
mask = logical_and(3 < data, data <= 7)