Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed __eq__/__ne__ for scalars | pierregm | 2010-06-29 | 2 | -4/+29 |
| | |||||
* | BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523) | Pauli Virtanen | 2010-06-27 | 2 | -0/+8 |
| | |||||
* | BUG: f2py: replace a string exception with a real one (fixes #1515) | Pauli Virtanen | 2010-06-19 | 1 | -1/+2 |
| | |||||
* | * masked is now an instance of a new object, MaskedConstant, that inherits ↵ | pierregm | 2010-06-10 | 1 | -3/+38 |
| | | | | from MaskedArray but prints slightly differently (no mention of a fill_value, because 'masked' can't be filled...) | ||||
* | Add pre-nep for a copule of structured_array_extensions. | Travis Oliphant | 2010-06-10 | 1 | -0/+9 |
| | |||||
* | DOC: add release notes check to HOWTO_RELEASE. | rgommers | 2010-06-07 | 1 | -0/+10 |
| | |||||
* | CLN: Cleanup nanops code a bit. Patch is from Tony Yu. | Charles Harris | 2010-06-07 | 1 | -7/+7 |
| | |||||
* | CHG: Rename reduce method in polytemplate to cutdeg. Reduce is just too | Charles Harris | 2010-06-07 | 4 | -18/+18 |
| | | | | much like a ufunc and a bit vague. | ||||
* | Don't track .gitignore file. | Charles Harris | 2010-06-07 | 1 | -13/+0 |
| | |||||
* | DOC: add automatic documentation generation from C sources (using Doxygen at ↵ | Pauli Virtanen | 2010-06-05 | 4 | -0/+1719 |
| | | | | the moment) | ||||
* | BUG: fix missing macros definition for IEEE macros. | David Cournapeau | 2010-06-03 | 1 | -2/+7 |
| | |||||
* | DOC: Add removal of histogram 'new' keyword to release notes. Closes #797. | rgommers | 2010-06-02 | 1 | -0/+4 |
| | |||||
* | BUG: Enable compiling Fortran code on OS X for ppc64 arch. | rgommers | 2010-06-02 | 1 | -8/+8 |
| | | | | Thanks to David Warde-Farley. Fixes #1399. | ||||
* | DOC: merge wiki edits for module npyio. | rgommers | 2010-06-02 | 1 | -8/+14 |
| | |||||
* | DOC: merge wiki edits for module linalg. | rgommers | 2010-06-02 | 1 | -72/+75 |
| | |||||
* | DOC: merge wiki edits for module core. | rgommers | 2010-06-02 | 4 | -9/+19 |
| | |||||
* | DOC: add some info on what should be uploaded to PyPi for a release. | rgommers | 2010-06-01 | 1 | -1/+3 |
| | |||||
* | BUG: Don't directly access Python object internals. | Charles Harris | 2010-05-30 | 1 | -4/+2 |
| | |||||
* | ENH: Add tests for nan[arg]min, nan[arg]max) for various integer types. | Charles Harris | 2010-05-29 | 1 | -0/+32 |
| | |||||
* | BUG: Fix typo. Closes ticket #1496. | Charles Harris | 2010-05-28 | 1 | -1/+1 |
| | |||||
* | BUG: Fix failed detection of unsigned integers in _nanop. Fixes ticket #1300. | Charles Harris | 2010-05-26 | 1 | -1/+1 |
| | |||||
* | BUG, STY: Make gaussian random number generators with identical behaviour | Charles Harris | 2010-05-26 | 2 | -14/+19 |
| | | | | have identical pickles. | ||||
* | STY: A Few more coding style cleanups. | Charles Harris | 2010-05-26 | 1 | -9/+20 |
| | |||||
* | STY: Some c coding style cleanups. | Charles Harris | 2010-05-26 | 2 | -142/+165 |
| | |||||
* | BUG: Make test using np.float96 portable by using np.longdouble instead. | Charles Harris | 2010-05-25 | 1 | -2/+2 |
| | |||||
* | STY: Remove some hard tabs. | Charles Harris | 2010-05-25 | 1 | -13/+13 |
| | |||||
* | Added tests for float96 for ldexp (ticket #866). | dhuard | 2010-05-25 | 1 | -0/+4 |
| | |||||
* | Fix for ticket #866 (ldexp on 64 bits). Tested on ubuntu 64 bits. | dhuard | 2010-05-25 | 2 | -2/+9 |
| | |||||
* | BUG: Use correct include path when multiple copies of NumPy is installed. | Stefan van der Walt | 2010-05-25 | 1 | -0/+7 |
| | |||||
* | BUG: Add some guards for bad inputs to the dtype constructor. | Robert Kern | 2010-05-24 | 2 | -0/+18 |
| | |||||
* | BUG: typo. | Robert Kern | 2010-05-24 | 1 | -1/+1 |
| | |||||
* | ENH: Test the exceptions and the left, right keywords of the interp | Charles Harris | 2010-05-24 | 1 | -0/+10 |
| | | | | function. | ||||
* | BUG: Make interp handle 'right' keyword correctly. Add check for empty | Charles Harris | 2010-05-24 | 1 | -35/+36 |
| | | | | arrays of sample points. Closes ticket #1064. | ||||
* | ENH: Make searchsorted faster by actually dividing the interval in the | Charles Harris | 2010-05-24 | 1 | -2/+2 |
| | | | | middle. | ||||
* | BUG: Fix problem with numarray _capi.c and python 2.7. | Charles Harris | 2010-05-24 | 1 | -2/+6 |
| | |||||
* | Update 2.0.0 release documentation to reflect changes in the Chebyshev and | Charles Harris | 2010-05-23 | 1 | -4/+10 |
| | | | | Polynomial classes. | ||||
* | CHG: Use [] instead of 'default' to specify the default domain in | Charles Harris | 2010-05-23 | 3 | -8/+11 |
| | | | | Chebyshev.fit and Polynomial.fit. Document the change from numpy 1.4.x. | ||||
* | ENH: Add reduce method to polynomial.Chebyshev and | Charles Harris | 2010-05-23 | 3 | -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 Harris | 2010-05-23 | 4 | -33/+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 ;) | ||||
* | Add some more info to the release notes for 2.0.0. | Charles Harris | 2010-05-21 | 1 | -0/+6 |
| | |||||
* | Note the changes in polynomial.polynomial and polynomial.chebyshev in | Charles Harris | 2010-05-21 | 1 | -0/+25 |
| | | | | the release notes. | ||||
* | CHG: Change the default domain for the fit class method of the | Charles Harris | 2010-05-21 | 3 | -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 Chebyshev | Charles Harris | 2010-05-21 | 1 | -0/+3 |
| | |||||
* | ENH: Change deriv and integ method documentation of the Chebyshev and | Charles Harris | 2010-05-21 | 1 | -6/+4 |
| | | | | Polynomial classes to reflect the enhanced behaviour of the base functions. | ||||
* | CHG: Change the truncate method of the Chebyshev and Polynomial classes | Charles Harris | 2010-05-21 | 3 | -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 Harris | 2010-05-21 | 2 | -0/+7 |
| | |||||
* | ENH: | Charles Harris | 2010-05-21 | 4 | -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 parentheses | Pauli Virtanen | 2010-05-18 | 4 | -5/+5 |
| | |||||
* | * Added `apply_over_axes` as requested in ticket #1480 | pierregm | 2010-05-16 | 2 | -288/+326 |
| | |||||
* | * add a `replace_space` option to NameValidator | pierregm | 2010-05-16 | 3 | -6/+46 |
| | | | | * Force a file to be opened in 'U' mode (bug #1473) |