numpy.ma.column_stack(tup) = Stack 1-D arrays as columns into a 2-D array. Take a sequence of 1-D arrays and stack
MaskedArray.tolist(fill_value=None)
numpy.ma.concatenate(arrays, axis=0)
numpy.ma.where(condition, x=, y=)
numpy.ma.clip(a, a_min, a_max, out=None)
numpy.ma.sum(self, axis=None, dtype=None, out=None) = Return the sum of the array elements over the given axis. Masked elements are
MaskedArray.count(axis=None)
numpy.ma.power(a, b, third=None)
numpy.ma.masked_outside(x, v1, v2, copy=True)
numpy.ma.dstack(tup) = Stack arrays in sequence depth wise (along third axis). Takes a sequence of arrays and stack them
Page 17 of 18