summaryrefslogtreecommitdiff
path: root/numpy/ma/core.py
Commit message (Expand)AuthorAgeFilesLines
* MAINT: Fix some typos in a code string and commentsDongjoon Hyun2016-01-271-1/+1
* DEP: Add warnings to `__getitem__` and `__setitem__` to point out the behavio...John Kirkham2016-01-151-0/+17
* BUG: Enforce order param for MaskedArray constructiongfyoung2016-01-151-16/+25
* Merge pull request #6728 from gerritholl/structured_multidim_masked_array_fil...ahaldane2016-01-121-0/+20
|\
| * BUG/TST: Fix for #6723 including test: force fill_value.ndim==0Gerrit Holl2015-12-071-0/+20
* | DOC: Match Documentation to Behavior for MaskedArray.filledgfyoung2016-01-031-1/+5
* | DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-31/+31
|/
* Merge pull request #6763 from gerritholl/structured_multidim_masked_array_mvo...Charles Harris2015-12-041-0/+12
|\
| * BUG/TST: Fix for #6724, make numpy.ma.mvoid consistent with numpy.voidGerrit Holl2015-12-031-0/+12
* | BUG/TST: Fix #6760 by correctly describing mask on nested subdtypesGerrit Holl2015-12-031-1/+1
|/
* Merge pull request #6734 from saimn/ma-mask-memoryCharles Harris2015-12-011-7/+13
|\
| * Test that the mask dtype if MaskType before using np.zeros/onesSimon Conseil2015-12-011-2/+2
| * ENH: Avoid memory peak when creating a MaskedArray with mask=True/False (#6732).Simon Conseil2015-11-261-8/+14
* | Merge pull request #6748 from saimn/ma-repr-memoryCharles Harris2015-12-011-3/+16
|\ \
| * | Use integer division to avoid casting to int.Simon Conseil2015-12-021-1/+1
| * | Allow to change the maximum width with a class variable.Simon Conseil2015-12-011-4/+6
| * | ENH: Avoid memory peak and useless computations when printing a MaskedArray.Simon Conseil2015-11-281-3/+14
| |/
* | BUG/TST: Fix for #6729Gerrit Holl2015-12-011-1/+1
|/
* BUG: ma.make_mask should always return nomask for nomask argument.Charles Harris2015-11-111-4/+5
* BUG, MAINT: Refactor ma.dot function and the corresponding method.Charles Harris2015-11-101-18/+219
* STY: Minor style fixups.Charles Harris2015-11-071-2/+4
* BUG: immutable _arraymethod function in ma.coreJonathan Helmus2015-10-291-45/+22
* BUG: ma.masked_values does not shrink mask if requestedJonathan Helmus2015-10-201-2/+2
* BUG: ma.put expands nomaskJonathan Helmus2015-10-121-9/+11
* Merge pull request #6094 from astrofrog/fix-gh-6019ahaldane2015-10-041-25/+7
|\
| * BUG: Fixed string representation of mvoid with multi-dimensional columnsThomas Robitaille2015-10-041-25/+7
* | MAINT: More expressive if statement in np.ma.roundJonathan Helmus2015-10-041-1/+1
* | BUG: numpy.ma.round works on zero dimensional arraysJonathan Helmus2015-10-021-2/+6
* | STY: Remove trailing whitespace from numpy/ma/core.pyJonathan Helmus2015-10-021-2/+2
* | BUG: numpy.ma functions can be called with only keyword argumentsJonathan Helmus2015-09-241-2/+2
* | BUG: fix use of undefined ‘unicode’ in Python 3Thomas Robitaille2015-08-221-4/+4
* | DEP,ENH: Deprecate numpy.ma.rank and add numpy.ma.ndim.Charles Harris2015-07-041-5/+24
* | STY,MAINT: PEP8 and pyflakes fixes for numpy/ma/*.pyCharles Harris2015-07-041-627/+744
|/
* BUG: automatically convert recarray dtype to np.recordAllan Haldane2015-06-191-10/+20
* BUG Ensure masked object arrays can always return single items.Marten van Kerkwijk2015-06-171-0/+6
* BUG Allow subclasses in MaskedArray ufuncs -- for non-ndarray _dataMarten van Kerkwijk2015-06-161-94/+94
* Merge pull request #4617 from mhvk/ma/no-direct-ndarray-methodsCharles Harris2015-06-151-40/+26
|\
| * ENH: allow subclass overrides by removing explicit ndarray methodsMarten van Kerkwijk2015-06-101-40/+26
* | MAINT: add __array_priority__ special case to masked array binary opsNathaniel J. Smith2015-06-131-0/+24
|/
* Merge pull request #4586 from mhvk/ma/subclass-item-setting-gettingCharles Harris2015-06-031-13/+14
|\
| * ENH: Let MaskedArray getter, setter respect baseclass overridesMarten van Kerkwijk2015-04-221-13/+14
* | MAINT: Added more detailed messages to NotImplementedError messages.Wendell Smith2015-05-111-2/+2
* | MAINT: Refactor numpy.ma.where.Charles Harris2015-05-021-40/+24
* | BUG: Fix `numpy.ma.where` to be consistent with unmasked version.John Kirkham2015-05-021-4/+30
* | BUG: Fix mask assignment in masked_where to use .mask property.Gerrit Holl2015-05-021-1/+2
|/
* Made dot return proper type.Alexander Belopolsky2015-03-291-1/+5
* Fixed out!=None case, added tests.Alexander Belopolsky2015-03-291-1/+1
* BUG: Implemented MaskedArray.dotAlexander Belopolsky2015-03-221-0/+16
* DOC: Reconcile docstrings and function signatures where they disagreeRobert McGibbon2015-03-021-8/+11
* BUG: Fix casting warnings during masked array in-place operations. (numpy/num...John Kirkham2015-02-181-7/+28