I create a numpy masked array with the shrink-option set to False
(which should yield a full-sized mask), and then I check the size of the mask:
import numpy as np
import numpy.ma as ma
x = ma.array(range(10),shrink=False)
print 'mask size = ', np.array(x.mask).size
which yields: mask size = 1
, i.e., the mask is still the default (shrunk) scalar mask.
Is this a (known) bug?
Update:
It seems that also the option shrink=True
does not work properly:
x = ma.array(range(3), mask=True, shrink=True)
x.__setmask__(ma.nomask) # remove the mask (should shrink now)
x.mask.size # returns 3, so mask has not shrunk!
_ = x.shrink_mask() # enforce shrinking
x.mask.size # returns 1, so only now it's OK