summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
...
* BUG: Fix typo. Closes ticket #1496.Charles Harris2010-05-281-1/+1
|
* BUG: Fix failed detection of unsigned integers in _nanop. Fixes ticket #1300.Charles Harris2010-05-261-1/+1
|
* BUG, STY: Make gaussian random number generators with identical behaviourCharles Harris2010-05-262-14/+19
| | | | have identical pickles.
* STY: A Few more coding style cleanups.Charles Harris2010-05-261-9/+20
|
* STY: Some c coding style cleanups.Charles Harris2010-05-262-142/+165
|
* BUG: Make test using np.float96 portable by using np.longdouble instead.Charles Harris2010-05-251-2/+2
|
* STY: Remove some hard tabs.Charles Harris2010-05-251-13/+13
|
* Added tests for float96 for ldexp (ticket #866).dhuard2010-05-251-0/+4
|
* Fix for ticket #866 (ldexp on 64 bits). Tested on ubuntu 64 bits.dhuard2010-05-252-2/+9
|
* BUG: Use correct include path when multiple copies of NumPy is installed.Stefan van der Walt2010-05-251-0/+7
|
* BUG: Add some guards for bad inputs to the dtype constructor.Robert Kern2010-05-242-0/+18
|
* BUG: typo.Robert Kern2010-05-241-1/+1
|
* ENH: Test the exceptions and the left, right keywords of the interpCharles Harris2010-05-241-0/+10
| | | | function.
* BUG: Make interp handle 'right' keyword correctly. Add check for emptyCharles Harris2010-05-241-35/+36
| | | | arrays of sample points. Closes ticket #1064.
* ENH: Make searchsorted faster by actually dividing the interval in theCharles Harris2010-05-241-2/+2
| | | | middle.
* BUG: Fix problem with numarray _capi.c and python 2.7.Charles Harris2010-05-241-2/+6
|
* CHG: Use [] instead of 'default' to specify the default domain inCharles Harris2010-05-233-8/+11
| | | | Chebyshev.fit and Polynomial.fit. Document the change from numpy 1.4.x.
* ENH: Add reduce method to polynomial.Chebyshev andCharles Harris2010-05-233-1/+50
| | | | | | polynomial.Polynomial. This method behaves like truncate except it takes the degree of the result instead of the number of coefficients.
* REV: Revert the changes to the truncate method of Polynomial and Chebyshev.Charles Harris2010-05-233-27/+26
| | | | | On second thought it was a bad idea to make such a radical change to existing behaviour. It was also hard to document the variations ;)
* CHG: Change the default domain for the fit class method of theCharles Harris2010-05-213-4/+19
| | | | | | | | | Chebyshev and Polynomial classes to None. Add 'default' as a possible value of the domain argument to specify the default domain. This change fits better with my experience with this method. I feel it is safe to make this change at this late date because the functions seem little used as yet and I would like to get them 'right' before folks catch on to their presence.
* ENH: Add test for the degree method added to the ChebyshevCharles Harris2010-05-211-0/+3
|
* ENH: Change deriv and integ method documentation of the Chebyshev andCharles Harris2010-05-211-6/+4
| | | | Polynomial classes to reflect the enhanced behaviour of the base functions.
* CHG: Change the truncate method of the Chebyshev and Polynomial classesCharles Harris2010-05-213-20/+24
| | | | | | to take degree instead of length. This seems to fit better with normal usage. I feel this change is safe at this time because these new classes seem to be little used as yet.
* ENH: Add degree method to the Chebyshev and Polynomial classes.Charles Harris2010-05-212-0/+7
|
* ENH:Charles Harris2010-05-214-39/+78
| | | | | | | 1) Let {poly,cheb}int accept 0 for the number of integrations. 2) Let {poly,cheb}(int,der} accept floating integers for number of integrations or derivations, raise ValueError otherwise. 3) Add tests for same.
* STY: core: add some parenthesesPauli Virtanen2010-05-184-5/+5
|
* * Added `apply_over_axes` as requested in ticket #1480pierregm2010-05-162-288/+326
|
* * add a `replace_space` option to NameValidatorpierregm2010-05-163-6/+46
| | | | * Force a file to be opened in 'U' mode (bug #1473)
* BUG: Correctly handle in-place output in percentile.Stefan van der Walt2010-05-162-4/+29
|
* BUG: Allow any array-like input to percentile.Stefan van der Walt2010-05-162-0/+5
|
* Add percentile function.Travis Oliphant2010-05-151-2/+128
|
* ENH: core/test: try more locales out in_foreign_locale to make it work also ↵Pauli Virtanen2010-05-131-9/+16
| | | | on modern Linux systems
* BUG/3K: lib: make savetxt work with filenamesPauli Virtanen2010-05-132-4/+14
|
* BUG: compat: fix a bug in open_latin1Pauli Virtanen2010-05-131-1/+1
|
* STY: core: reduce code duplication in _import_umath and _import_arrayPauli Virtanen2010-05-132-14/+5
|
* BUG: core: remove a double-DECREF in _import_umath (fixes #1483)Pauli Virtanen2010-05-131-1/+0
|
* ENH: linalg: convert non-native endian arrays to native-endian before ↵Pauli Virtanen2010-05-112-0/+31
| | | | handing them to lapack_lite
* BUG: linalg: check array byte order before passing it to lapack_lite (fixes ↵Pauli Virtanen2010-05-111-0/+6
| | | | #1482)
* BUG/3K: distutils: do not assume that files output e.g. by gcc can be read ↵Pauli Virtanen2010-05-112-7/+13
| | | | in ascii codec
* BUG: Make fftshift and ifftshift accept integer arguments for the axesCharles Harris2010-05-102-0/+13
| | | | | value. The functions now match their documentation. Fixes ticket #1182, patch from rgommers.
* STY: Some cleanups of ndarraytypes.h.Charles Harris2010-05-091-186/+315
|
* BUG: core: fix a datetime test case (fixes #1468)Pauli Virtanen2010-05-091-2/+2
|
* ENH: Remove obsolete keyword 'register'.Charles Harris2010-05-091-3/+3
|
* ENH: Make guard in ndarraytypes.h match the file name.Charles Harris2010-05-091-2/+2
|
* ENH: Break out parts of ndarrayobject.h that don't reference the ndarrayCharles Harris2010-05-092-1249/+1254
| | | | c-api into the header ndarraytypes.h.
* BUG: lib: remember in a test that datetime specifiers are bytes stringsPauli Virtanen2010-05-081-1/+2
|
* BUG: lib: make loadtxt work on Py3 when fh returns unicode (fixes #1479)Pauli Virtanen2010-05-081-1/+1
|
* BUG: core: ensure we have GIL before calling PyOS_string_to_double (fixes #1345)Pauli Virtanen2010-05-082-10/+32
| | | | | | In Python >= 2.7, the PyOS_ascii_strtod has been deprecated and replaced with PyOS_string_to_double. However, the latter may raise Python exceptions, which requires that GIL is held when calling it.
* BUG: Make interp handle zero dimensional ndarrays as interpolationCharles Harris2010-05-072-7/+37
| | | | | points. Add some tests for interp. Fixes ticket #1177. unc_api.txt.tmp
* Merge branch 'vectorize'Charles Harris2010-05-062-57/+162
|