Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | extras : dropped the m prefix in mediff1d, mvander, mpolyfit | pierregm | 2008-05-14 | 5 | -23/+37 |
| | | | | mrecords: fixed __setitem__ to update the mask if needed. | ||||
* | extras: introduced mvander and mpolyfit | pierregm | 2008-05-13 | 2 | -85/+190 |
| | |||||
* | Fix reST markup. | Stefan van der Walt | 2008-05-12 | 1 | -3/+9 |
| | |||||
* | power : fixed a bug when a scalar is the first argument | pierregm | 2008-05-12 | 2 | -7/+35 |
| | | | | | MaskedArray.__pow__ : call power MaskedArray.__ipow__: works in place. Note that the _data part gets "fixed" (NaNs/Infs set to fill_value) | ||||
* | core : power : use the quick-and-dirty approach: compute everything and mask ↵ | pierregm | 2008-05-12 | 2 | -15/+42 |
| | | | | | | | afterwards : MaskedArray._update_from(obj) : ensure that _baseclass is a ndarray if obj wasn't one already : introduced clip in the namespace, just for convenience | ||||
* | core : power : mask all negative values when the exponent (b) doesn't ↵ | pierregm | 2008-05-09 | 2 | -3/+7 |
| | | | | satisfy b==b.astype(int) | ||||
* | core : power : mask all negative values when the exponent (b) doesn't ↵ | pierregm | 2008-05-09 | 2 | -6/+7 |
| | | | | satisfy (abs(b-int(b))<np.finfo(float).precision) | ||||
* | core : prevent power to mask negative values when it should not | pierregm | 2008-05-07 | 2 | -4/+10 |
| | |||||
* | core : force .compressed() to return a type(_baseclass) object (usually a ↵ | pierregm | 2008-05-05 | 2 | -6/+23 |
| | | | | | | ndarray) : fixed a bug in .compressed() when the _baseclass is a matrix | ||||
* | (no commit message) | pierregm | 2008-05-02 | 1 | -1/+0 |
| | |||||
* | core : clean up update_from | pierregm | 2008-05-01 | 3 | -16/+17 |
| | |||||
* | core : fixed a bug w/ array((0,0))/0. | pierregm | 2008-04-30 | 3 | -4/+33 |
| | | | | | | testutils : introduced assert_almost_equal/assert_approx_equal: use assert_almost_equal(a,b,decimal) to compare a and b up to decimal places use assert_approx_equal(a,b,decimal) to compare a and b up to b*10.**-decimal | ||||
* | removed tests/test_mstat and tests/test_morestats (now available in scipy) | pierregm | 2008-04-25 | 2 | -289/+0 |
| | |||||
* | suppressed mstats and morestats: the modules are now part of scipy.stats | pierregm | 2008-04-24 | 2 | -886/+0 |
| | |||||
* | __float__ : raises a TypeError exception for arrays longer than 1 | pierregm | 2008-04-23 | 3 | -9/+19 |
| | | | | __int__ : raises a TypeError exception for arrays longer than 1 | ||||
* | mrecords: clean-up | pierregm | 2008-04-20 | 3 | -27/+18 |
| | | | | | | core: MaskedArray.__setitem__ : when hardmask is False, force the data to be updated before the mask. core: MaskedArray.round_ : fixed to keep the dates on TimeSeries core: round : simplified | ||||
* | ran reindent in preparation for the 1.1 release | Jarrod Millman | 2008-04-20 | 9 | -102/+100 |
| | |||||
* | Remove R files? | Travis Oliphant | 2008-04-14 | 2 | -41/+0 |
| | |||||
* | core: | pierregm | 2008-04-14 | 6 | -146/+197 |
| | | | | | | | | | | | | | | 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 | ||||
* | Add docs and examples for financial functions. | Travis Oliphant | 2008-04-08 | 2 | -9/+0 |
| | |||||
* | Fix maskedarray's std and var of complex arrays, with test. Add test for ddof. | aarchiba | 2008-04-07 | 2 | -2/+59 |
| | |||||
* | core: | pierregm | 2008-04-07 | 6 | -85/+36 |
| | | | | | | | | | | 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) | ||||
* | Documented and tested new behaviour of std and var on complex numbers. ↵ | aarchiba | 2008-04-07 | 1 | -8/+13 |
| | | | | Added ddof argument and its documentation to the std and var methods of matrix. Documented ddof for std and var methods of ma. Note that stdu and varu in ma still have the old, peculiar, behaviour for complex values. | ||||
* | Add tests for ddof parameter in var/std [patch by Anne Archibald]. | Stefan van der Walt | 2008-04-06 | 1 | -0/+2 |
| | |||||
* | added common_fill_value and set_fill_value in __all__ | pierregm | 2008-03-28 | 1 | -4/+4 |
| | |||||
* | (forgot to get rid of my personal tests... sorry about that) | pierregm | 2008-03-27 | 1 | -11/+0 |
| | |||||
* | new methods : round | pierregm | 2008-03-27 | 2 | -3/+74 |
| | | | | | new functions : frombuffer, fromfunction, identity, indices, trace to fix : fromfile/tofile raise a NotImplementedError. For now. | ||||
* | Remove broken ma test. | Stefan van der Walt | 2008-03-23 | 1 | -2/+0 |
| | |||||
* | core : fixed sort when axis is None | pierregm | 2008-03-22 | 7 | -45/+166 |
| | | | | | | | 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 | ||||
* | reverted to a proper version of __getitem__ | pierregm | 2008-03-18 | 1 | -1/+1 |
| | |||||
* | - fixed masked_where (bug #703) | pierregm | 2008-03-18 | 2 | -23/+24 |
| | | | | | - simplified 'masked_invalid' and added it to __all__ - added the 'out' optional parameter to .mean | ||||
* | BUG: Python 2.3 compatibility. We cannot use generator expressions in numpy. | Robert Kern | 2008-03-11 | 1 | -1/+1 |
| | |||||
* | Add ddof parameter to std and var computations. | Travis Oliphant | 2008-03-07 | 1 | -5/+6 |
| | |||||
* | updated API_CHANGES.txt | pierregm | 2008-02-15 | 5 | -134/+292 |
|\ | | | | | | | | | | | mstats : updated docstrings morestats : updated docstrings core : fixed __setitem__ for records | ||||
| * | numpy.ma : docs + API_CHANGES.txt updates | pierregm | 2008-02-14 | 4 | -133/+283 |
| | | |||||
* | | initial port from Moin Moin site | Jarrod Millman | 2008-02-10 | 1 | -0/+241 |
| | | |||||
* | | Add ma for scons build | David Cournapeau | 2008-02-09 | 1 | -0/+18 |
| | | |||||
* | | Merge maskedarray branch. | Stefan van der Walt | 2008-02-09 | 1 | -1/+0 |
|/ | |||||
* | comments cleaning and docstring updates. | pierregm | 2008-02-07 | 2 | -82/+106 |
| | |||||
* | Remove .data comparisons in tests. Fix whitespace. | Stefan van der Walt | 2008-02-07 | 2 | -8/+1 |
| | |||||
* | Ignore DeprecationWarning during testing. | Stefan van der Walt | 2008-02-06 | 1 | -2/+5 |
| | |||||
* | Remove print statement from test. | Stefan van der Walt | 2008-02-06 | 1 | -1/+0 |
| | |||||
* | maskedarray.core: | pierregm | 2008-02-01 | 4 | -369/+632 |
| | | | | | | | | tolist : make sure that a masked record is output as a tuple of None maskedarray.mrecords: * introduced mrecarray as the equivalent of recarray w/ fieldmask * simplified fromarrays/fromrecords | ||||
* | maskedarray.core: | pierregm | 2008-01-30 | 1 | -2/+3 |
| | | | | | * fixed __getitem__ on records when fill_value is not set * fixed _extrema_operation.reduce to accept non arrays as arguments (ticket #645) | ||||
* | maskedarray.core: | pierregm | 2008-01-28 | 2 | -32/+44 |
| | | | | | * fixed compress (third time the charm?) * fixed a pb w/ get_fill_value when fill_value is None: now recognized records. | ||||
* | (no commit message) | pierregm | 2008-01-24 | 1 | -1/+2 |
| | |||||
* | core: fixed compress to ensure that a.compress(cond)==a[cond] in most cases | pierregm | 2008-01-24 | 2 | -11/+17 |
| | |||||
* | ma.core : add the compress method/function | pierregm | 2008-01-24 | 2 | -7/+49 |
| | |||||
* | Add 'compress'. | Stefan van der Walt | 2008-01-23 | 2 | -2/+14 |
| | |||||
* | Update documentation format. | Stefan van der Walt | 2008-01-23 | 1 | -364/+424 |
| |