summaryrefslogtreecommitdiff
path: root/numpy/ma
Commit message (Expand)AuthorAgeFilesLines
* * fixed a pb when using sum/prod on an array with dtype np.objectpierregm2009-11-163-927/+953
* first set of checkins from the doc editorJarrod Millman2009-11-132-32/+224
* Merge deprecate_with_doc into deprecate(message="...").Stefan van der Walt2009-10-251-4/+4
* #1256: Forgot rest of patch to support Unicode elements in masked arrays.mdroe2009-10-191-0/+2
* Fix #1256: repr of masked array crashes with Unicode elementsmdroe2009-10-142-6/+11
* ENH: move inspect copy into newly created compat module.David Cournapeau2009-10-131-1/+1
* ENH: use our own inspect instead of upstream inspect to speed up numpy import...David Cournapeau2009-10-131-2/+2
* * ma.masked_equal : force the `fill_value` of the output to `value` (ticket #...pierregm2009-10-092-1/+9
* Docstring update: maPauli Virtanen2009-10-022-428/+1570
* Docstring updates, part 1Pauli Virtanen2009-10-021-17/+153
* Fix remaining references to numpy.core.defmatrixPauli Virtanen2009-09-261-2/+2
* Move masked array test out of numpy.core.David Cournapeau2009-09-161-0/+4
* Move ma/matrix regressions out of numpy.core tests.David Cournapeau2009-09-161-0/+35
* Optimize ma.masked_invalid (on a suggestion from E.Firing)pierregm2009-09-081-3/+6
* * Bugfix for ticket #1207pierregm2009-08-302-1/+9
* * fixed np.ma.average on integersw/ mask (bug #1188)pierregm2009-08-063-38/+32
* * fixed _from_methods to run on ndarrays (bug #1187)pierregm2009-08-062-13/+35
* * Fixed __eq__ and __ne__ on masked singletonpierregm2009-07-222-0/+14
* Fix to setdiff1d (and masked version) + tests (#1133, by N.C.)Robert Cimrman2009-07-202-2/+5
* core : fixed MaskedArray.__array_finalize__ when the mask is full of False (b...pierregm2009-07-184-10/+110
* Enhancements to arraysetops (ticket #1133, by Neil Crighton)Robert Cimrman2009-07-082-104/+125
* * Bugfix #1129. Thanks to Reggie.pierregm2009-06-292-2/+11
* Merge from doc wikiPauli Virtanen2009-06-192-79/+153
* * getdata : prevent unnecessary copies (thx to Eric Firing)pierregm2009-05-132-113/+156
* Fix some failing tests due to name-space issues.Travis Oliphant2009-05-101-4/+4
* * harden_mask, soften_mask, unshare_mask and shrink_mask now return selfpierregm2009-05-092-0/+32
* Add `diff` to the namespacepierregm2009-05-011-1/+3
* * fixed notmasked_edges when no data are maskedpierregm2009-04-132-18/+42
* _arraymethod : fallback when a method is called as MaskedArray.methodpierregm2009-04-112-4/+21
* Merge from the doc wikiPauli Virtanen2009-03-242-125/+1137
* * fixed the 'Warnings' section of some docstrings.pierregm2009-03-241-4/+4
* numpy.ma doc updatepierregm2009-03-111-5/+3
* * MaskedArray.__setstate__ : fixed for structured arraypierregm2009-02-232-2/+14
* * MaskedArray.__array_wrap__ : forces the domain (if any) to a ndarray (fill ...pierregm2009-02-112-3/+13
* * prevent modifications to the mask to be back-propagated w/ __array_wrap__pierregm2009-02-102-1/+19
* (no commit message)pierregm2009-02-071-4/+4
* MaskedArray.resize : systematically raise a TypeError exception, as a masked ...pierregm2009-02-072-23/+40
* * test__iotools : prevent test_upgrademapper if dateutil is not installedpierregm2009-02-041-1/+1
* * prevent MaskedBinaryOperation and DomainedBinaryOperation to shrink the mas...pierregm2009-01-272-5/+69
* * add intersect1d, intersect1d_nu, setdiff1d, setmember1d, setxor1d, unique1d...pierregm2009-01-192-102/+424
* * renamed FlatIter to MaskedIteratorpierregm2009-01-191-4/+7
* * fixed _arraymethod.__call__ for structured arrayspierregm2009-01-171-1/+1
* numpy.ma.core:pierregm2009-01-132-101/+152
* * Add flatten_structured_array to the namespacepierregm2009-01-102-8/+9
* * Added flatten_structured_arrayspierregm2009-01-092-17/+104
* * Remove a debugging print statement.pierregm2009-01-081-4/+0
* * Add __eq__ and __ne__ for support of flexible arrays.pierregm2009-01-082-4/+129
* * Renamed `torecords` to `toflex`, keeping `torecords` as an aliaspierregm2009-01-072-11/+88
* * Fixed iadd/isub/imul when the base array has no mask but the other array doespierregm2009-01-072-4/+55
* * Bugfix #961pierregm2009-01-061-29/+32