summaryrefslogtreecommitdiff
path: root/numpy/ma/extras.py
Commit message (Collapse)AuthorAgeFilesLines
...
* * Added `apply_over_axes` as requested in ticket #1480pierregm2010-05-161-77/+103
|
* first set of checkins from the doc editorJarrod Millman2009-11-131-21/+167
|
* Merge deprecate_with_doc into deprecate(message="...").Stefan van der Walt2009-10-251-4/+4
|
* Docstring update: maPauli Virtanen2009-10-021-109/+282
|
* * fixed np.ma.average on integersw/ mask (bug #1188)pierregm2009-08-061-1/+1
|
* Fix to setdiff1d (and masked version) + tests (#1133, by N.C.)Robert Cimrman2009-07-201-1/+4
|
* core : fixed MaskedArray.__array_finalize__ when the mask is full of False ↵pierregm2009-07-181-4/+72
| | | | | | (bugfix #1166) extras : introduced clump_masked and clump_unmasked
* Enhancements to arraysetops (ticket #1133, by Neil Crighton)Robert Cimrman2009-07-081-73/+100
|
* Merge from doc wikiPauli Virtanen2009-06-191-2/+39
|
* * fixed notmasked_edges when no data are maskedpierregm2009-04-131-4/+4
|
* Merge from the doc wikiPauli Virtanen2009-03-241-25/+225
|
* * add intersect1d, intersect1d_nu, setdiff1d, setmember1d, setxor1d, ↵pierregm2009-01-191-59/+203
| | | | | | unique1d, union1d * use np.atleast1d instead of ma.atleast1d
* numpy.ma.core:pierregm2009-01-131-53/+69
| | | | | | | | | | | * introduced baseclass, sharedmask and hardmask as readonly properties of MaskedArray * docstrings update numpy.ma.extras: * docstring updates docs/reference * introduced maskedarray, maskedarray.baseclass, maskedarray.generic
* Get lstsq and eigvals from numpy.linalg, not from numpy.dual. Addresses ↵Pauli Virtanen2008-12-131-2/+2
| | | | Scipy ticket #800
* * Fixed MaskedArray for nested dtype w/ input maskpierregm2008-12-021-5/+5
| | | | | * Fixed masked_all for nested dtype * Fixed masked_all_like for nested dtype
* * Added get_object_signature to fix missing signaturespierregm2008-11-271-146/+35
| | | | | | * Fixed .getdoc from _arraymethod, _frommethod, _convert2ma, _fromnxfunction * Fixed the docstrings of .trace, .mean, .argsort, .sort * Suppressed duplicated conjugate, ptp, round, expand_dims, apply_along_axis, compress_rowcols, mask_rowcols, vander, polyfit
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵Pauli Virtanen2008-10-281-28/+33
| | | | they are still an improvement)
* median : fixed a bug in _median1D (there shouldn't have been an axis)pierregm2008-09-181-1/+1
|
* Updated doc + -OO compatibilitypierregm2008-08-261-2/+8
|
* Small style cleanup. Need work for ticket #893.Charles Harris2008-08-261-0/+2
|
* ran reindentJarrod Millman2008-08-081-7/+7
|
* corepierregm2008-08-071-48/+82
| | | | | | | * use self.__name__ for private method instances extras * fixed corrcoef * introduced diagflat
* * added cov and corrcoef to ma.extras for compatibilitypierregm2008-08-051-15/+138
|
* Merge from documentation editor.Stefan van der Walt2008-08-051-8/+105
|
* * extras: fixed the definition of medianpierregm2008-08-041-11/+8
|
* BUG: missing import.Robert Kern2008-07-291-0/+1
|
* Use the implicit "import numpy as np" made available to all doctests instead Alan McIntyre2008-07-051-1/+1
| | | | | of explicit imports or dependency on the local scope where the doctest is defined..
* Reduce numpy's import times by delaying a few time consuming imports to the ↵Robert Kern2008-07-031-5/+2
| | | | point of actual use and global instantiations of finfo. Thanks to David Cournapeau for tracking down and fixing the import part of the problem.
* mrecords : Make sure a field shares its mask with the whole arraypierregm2008-05-291-1/+1
| | | | | mrecords : IMPORTANT : the mask of a field is no longer set to nomask when it's full of False, which simplifies masking specific fields. extras : Reorganized personal comments
* fixed whitespace w/ reindentJarrod Millman2008-05-221-3/+3
|
* mrecords : fixed fromarrays when importing only one recordpierregm2008-05-161-22/+22
| | | | extras : fixed a bug in the naming convention
* extras : dropped the m prefix in mediff1d, mvander, mpolyfitpierregm2008-05-141-9/+9
| | | | mrecords: fixed __setitem__ to update the mask if needed.
* extras: introduced mvander and mpolyfitpierregm2008-05-131-85/+160
|
* ran reindent in preparation for the 1.1 releaseJarrod Millman2008-04-201-13/+13
|
* core:pierregm2008-04-141-3/+0
| | | | | | | | | | | | | | fix_invalid : use isfinite & skip setting a mask is there's no invalid data _update_from: force the default hardmask to False (instead of relying on class default) extras: cleanup mrecords: modified to meet new standards (import numpy as np) __array_finalize__ : skip the call to _update_from and directly update __dict__ __setmask__ : allow an update from a valid fieldmask mask : as recognizable property
* core: pierregm2008-04-071-74/+26
| | | | | | | | | | compressed : make sure that the result is always an array. count : make sure that a regular ndarray is returned. added the get_fill_value function extras: added the expand_dims function deleted varu/stdu (redundant with the ddof=1 parameter)
* core : fixed sort when axis is Nonepierregm2008-03-221-9/+84
| | | | | | | mstats : fixed mmedian, renamed to median and moved to numpy.ma.extras for compatibility extras : introduced median from mstats mrecords: * fixed __array_finalize__ to keep the mask of a masked array when viewing it as a mrecarray * simplified _getdata
* BUG: Python 2.3 compatibility. We cannot use generator expressions in numpy.Robert Kern2008-03-111-1/+1
|
* comments cleaning and docstring updates.pierregm2008-02-071-38/+79
|
* Fix concatenator usage (patch by Pierre).Stefan van der Walt2008-01-201-5/+5
| | | | Change N to np in regression test.
* Reformat extras docstrings.Stefan van der Walt2007-12-151-109/+148
|
* Fix benchmarks. Remove remaining imports of maskedarray.Stefan van der Walt2007-12-151-1/+1
|
* Move ma to numpy root. Fix unit tests. Remove references to numpy.core.ma.Stefan van der Walt2007-12-151-0/+722