Just found what should be a bug in 1.7.1.  I'm running python(x,y) on
windows here:

>>> dataMatrix[ii,:,mask].shape
(201, 23)
>>> dataMatrix[ii,:,:].shape
(23, 201)
>>> dataMatrix.shape
(24, 23, 201)
>>> mask
array([ True,  True,  True,  True,  True,  True,  True,  True,  True,
        ...
        True,  True,  True], dtype=bool)

using a mask should not change the order of the dimensions.  Is there a
reason for this behavior, and if so, how do I avoid it in the future?
Thanks

     --Chad Kidder
_______________________________________________
NumPy-Discussion mailing list
[email protected]
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to