- 02b5c74 * fix methods using axis when the mask is nomask by pierregm · 16 years ago
- 846d905 * Bugfix #1173 and #1174 by mdroe · 16 years ago
- faafd31 * fixed a pb when using sum/prod on an array with dtype np.object by pierregm · 16 years ago
- f07c79d first set of checkins from the doc editor by Jarrod Millman · 16 years ago
- 55d07fb Merge deprecate_with_doc into deprecate(message="..."). by Stefan van der Walt · 16 years ago
- 49cd4ec #1256: Forgot rest of patch to support Unicode elements in masked arrays. by mdroe · 16 years ago
- bbe934c Fix #1256: repr of masked array crashes with Unicode elements by mdroe · 16 years ago
- daf38f3 ENH: move inspect copy into newly created compat module. by David Cournapeau · 16 years ago
- 7b481cb ENH: use our own inspect instead of upstream inspect to speed up numpy import times. by David Cournapeau · 16 years ago
- 8cad335 * ma.masked_equal : force the `fill_value` of the output to `value` (ticket #1253) by pierregm · 16 years ago
- d8f0614 Docstring update: ma by Pauli Virtanen · 16 years ago
- 1521f66 Docstring updates, part 1 by Pauli Virtanen · 16 years ago
- 9af578f Fix remaining references to numpy.core.defmatrix by Pauli Virtanen · 16 years ago
- 2eae961 Move masked array test out of numpy.core. by David Cournapeau · 16 years ago
- 1c321de Move ma/matrix regressions out of numpy.core tests. by David Cournapeau · 16 years ago
- d4eb873 Optimize ma.masked_invalid (on a suggestion from E.Firing) by pierregm · 16 years ago
- bbe188e * Bugfix for ticket #1207 by pierregm · 16 years ago
- 0a78665 * fixed np.ma.average on integersw/ mask (bug #1188) by pierregm · 16 years ago
- d0bba52 * fixed _from_methods to run on ndarrays (bug #1187) by pierregm · 16 years ago
- 09636b1 * Fixed __eq__ and __ne__ on masked singleton by pierregm · 16 years ago
- 1319b2c Fix to setdiff1d (and masked version) + tests (#1133, by N.C.) by Robert Cimrman · 16 years ago
- a44e143 core : fixed MaskedArray.__array_finalize__ when the mask is full of False (bugfix #1166) by pierregm · 16 years ago
- c1c0533 Enhancements to arraysetops (ticket #1133, by Neil Crighton) by Robert Cimrman · 16 years ago
- dfd3b74 * Bugfix #1129. Thanks to Reggie. by pierregm · 16 years ago
- 87fa5ae Merge from doc wiki by Pauli Virtanen · 16 years ago
- 673de27 * getdata : prevent unnecessary copies (thx to Eric Firing) by pierregm · 16 years ago
- 7274342 Fix some failing tests due to name-space issues. by Travis Oliphant · 16 years ago
- 11e6b62 * harden_mask, soften_mask, unshare_mask and shrink_mask now return self by pierregm · 16 years ago
- 98fb552 Add `diff` to the namespace by pierregm · 16 years ago
- 430647c * fixed notmasked_edges when no data are masked by pierregm · 16 years ago
- ae58b00 _arraymethod : fallback when a method is called as MaskedArray.method by pierregm · 16 years ago
- 7b751f6 Merge from the doc wiki by Pauli Virtanen · 16 years ago
- c518f4d * fixed the 'Warnings' section of some docstrings. by pierregm · 16 years ago
- 6485a8e numpy.ma doc update by pierregm · 16 years ago
- 72f3eb6 * MaskedArray.__setstate__ : fixed for structured array by pierregm · 17 years ago
- 2756254 * MaskedArray.__array_wrap__ : forces the domain (if any) to a ndarray (fill with True) by pierregm · 17 years ago
- b3e5fdf * prevent modifications to the mask to be back-propagated w/ __array_wrap__ by pierregm · 17 years ago
- dab616f by pierregm · 17 years ago
- c180e36 MaskedArray.resize : systematically raise a TypeError exception, as a masked array never owns its data by pierregm · 17 years ago
- 37beec6 * test__iotools : prevent test_upgrademapper if dateutil is not installed by pierregm · 17 years ago
- f885786 * prevent MaskedBinaryOperation and DomainedBinaryOperation to shrink the mask of the output when at least one of the inputs has a mask full of False by pierregm · 17 years ago
- 065626f * add intersect1d, intersect1d_nu, setdiff1d, setmember1d, setxor1d, unique1d, union1d by pierregm · 17 years ago
- 767ea85 * renamed FlatIter to MaskedIterator * added __getitem__ to MaskedIterator by pierregm · 17 years ago
- 4b9c0f2 * fixed _arraymethod.__call__ for structured arrays by pierregm · 17 years ago
- 6b633fa numpy.ma.core: by pierregm · 17 years ago
- 7119408 * Add flatten_structured_array to the namespace by pierregm · 17 years ago
- 7dfb0e6 * Added flatten_structured_arrays * Fixed _get_recordarray for nested structures by pierregm · 17 years ago
- b374b05 * Remove a debugging print statement. by pierregm · 17 years ago
- a5da87c * Add __eq__ and __ne__ for support of flexible arrays. by pierregm · 17 years ago
- d94861c * Renamed `torecords` to `toflex`, keeping `torecords` as an alias by pierregm · 17 years ago
- 949fe03 * Fixed iadd/isub/imul when the base array has no mask but the other array does by pierregm · 17 years ago
- c5137ea * Bugfix #961 by pierregm · 17 years ago
- 70c84a8 *moved the printing templates out of MaskedArray.__repr__ by pierregm · 17 years ago
- 0d76f63 * adapted default_fill_value for flexible datatype by pierregm · 17 years ago
- 8c448a3 ran reindent by Jarrod Millman · 17 years ago
- 8e77ab8 testutils: by pierregm · 17 years ago
- 934b274 testutils: by pierregm · 17 years ago
- f947ff3 Get lstsq and eigvals from numpy.linalg, not from numpy.dual. Addresses Scipy ticket #800 by Pauli Virtanen · 17 years ago
- 57c9ad3 * Added MaskError by pierregm · 17 years ago
- 9065761 * Cleaned up make_mask_descr by pierregm · 17 years ago
- ac33865 * Fixed make_mask_descr for dtype w/ composite names, like [(('A','B'), float)] by pierregm · 17 years ago
- 2dd04ce * Fixed MaskedArray for nested dtype w/ input mask by pierregm · 17 years ago
- 77f95a1 * added flatten_mask to collapse masks w/ (nested) flexible types. by pierregm · 17 years ago
- 7933d53 Fixed make_mask_descr for nested dtypes by pierregm · 17 years ago
- ce7cd10 Doc update by pierregm · 17 years ago
- 0629f41 * Added get_object_signature to fix missing signatures by pierregm · 17 years ago
- 8209ab6 * added ma.diag by pierregm · 17 years ago
- 638bacd Added mod to the ufuncs by pierregm · 17 years ago
- 702538f Rewrote allclose to allow comparison with a scalar by pierregm · 17 years ago
- 3a1ffcc * Prevent the shape of a 1d-singleton to be lost when interacting with masked (bug fix #948) by pierregm · 17 years ago
- 5fb1698 Import np_ in ma tests since the import is not available in numpy.ma anymore. by David Cournapeau · 17 years ago
- 77807c0 make_mask : Added a dtype keyword to support flexible-dtype by pierregm · 17 years ago
- 6a9b545 simplify MAError by pierregm · 17 years ago
- b566ef3 MaskedRecords : reintroduced _fieldmask as a property (for backcompatibility). by pierregm · 17 years ago
- 18594cd Import documentation from doc wiki (part 2, work-in-progress docstrings, but they are still an improvement) by Pauli Virtanen · 17 years ago
- 696b880 __getattribute__ : make sure than a np.void is returned when retrieving the unmasked attribute of a single record. by pierregm · 17 years ago
- 56bb8eb * make sure we call self.failUnless instead of assert by pierregm · 17 years ago
- a4f1e50 core : * fixed make_mask_descr to recognize subdtypes by pierregm · 17 years ago
- 5916fc4 replaced assert with self.failUnless by pierregm · 17 years ago
- 05921b0 use if ...: raise AssertionError instead of assert by pierregm · 17 years ago
- 855ede0 core: * added __rmul and __radd__ * fixed concatenate for flexible-dtype by pierregm · 17 years ago
- 3060e39 core: by pierregm · 17 years ago
- 0c4ca0c median : fixed a bug in _median1D (there shouldn't have been an axis) by pierregm · 17 years ago
- 0e400c8 MaskedArray.__new__ : make sure that we inherit the _hardmask from data (if any) instead of reverting to default. by pierregm · 17 years ago
- e8b5097 Removed unused imports. Standardize NumPy import as "import numpy as np". by Alan McIntyre · 17 years ago
- 91391ca * fixed view for MaskedArrays w/ flexible dtype by pierregm · 17 years ago
- d14ca83 * make sure that minimum & maximum actually return a MaskedArray by pierregm · 17 years ago
- 9351f2e Removed unused imports. by Alan McIntyre · 17 years ago
- c265a81 * fixed deepcopy of masked arrays (bug #906) by pierregm · 17 years ago
- 72f0512 docstring update by pierregm · 17 years ago
- d29107a reindenting prior to release by Jarrod Millman · 17 years ago
- edc1465 * fixing botched previous commit by pierregm · 17 years ago
- 62e4b61 Updated doc + -OO compatibility by pierregm · 17 years ago
- 755cc21 Small style cleanup. Need work for ticket #893. by Charles Harris · 17 years ago
- 2c7654a BUG: fix part of ticket #893 by Charles Harris · 17 years ago
- 672fb17 core : make sure that masked_equal works with a list as input by pierregm · 17 years ago
- 31b18be * masked_where : force a consistency check on the shapes of the inputs by pierregm · 17 years ago
- 70ed0f2 ran reindent by Jarrod Millman · 17 years ago
- 0bdef19 * core : minor doc formatting by pierregm · 17 years ago
- 469c4d3 core by pierregm · 17 years ago