Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | One dtype representation issue got fixed. Documented the remaining one. | Robert Kern | 2008-02-27 | 1 | -6/+7 | |
| | ||||||
* | Handle the no-comment case correctly. | Robert Kern | 2008-02-27 | 1 | -1/+5 | |
| | ||||||
* | Fix printing of complicated dtypes. | Travis Oliphant | 2008-02-27 | 1 | -1/+6 | |
| | ||||||
* | Documentation update for the NPY format. | Robert Kern | 2008-02-27 | 1 | -7/+9 | |
| | ||||||
* | Don't use FAST moves on aligned flexible data-types to avoid bus errors on ↵ | Travis Oliphant | 2008-02-27 | 1 | -1/+6 | |
| | | | | SPARC archiecture. | |||||
* | Make sure that mp is an array before testing for 0-d ness. | Travis Oliphant | 2008-02-26 | 1 | -3/+9 | |
| | ||||||
* | Allow numpy scalars to be indexed in limited ways, but not be iterable. Fix ↵ | Travis Oliphant | 2008-02-25 | 2 | -14/+67 | |
| | | | | consistency bug with [...] indexing and remove useless check and allow 0-d boolean arrays to work as masks for scalars. | |||||
* | Return to condition where overwrite_output for median raises error for ↵ | Matthew Brett | 2008-02-24 | 1 | -2/+2 | |
| | | | | non-ndarray input | |||||
* | Add Anne Archibald's fix to average to remove eval. | Travis Oliphant | 2008-02-23 | 1 | -3/+3 | |
| | ||||||
* | Fix bug reported by Debian package maintainer. | Travis Oliphant | 2008-02-23 | 1 | -1/+1 | |
| | ||||||
* | Small sync-to-flush doc update. | chris.burns | 2008-02-22 | 1 | -2/+2 | |
| | ||||||
* | Deprecate 'sync' in favour of 'flush'. | Stefan van der Walt | 2008-02-22 | 2 | -5/+22 | |
| | ||||||
* | Remove type-checking which failed with MaskedArrays. Add documentation and ↵ | chris.burns | 2008-02-21 | 2 | -3/+154 | |
| | | | | tests. | |||||
* | Use x.any() instead of any(x) | Robert Kern | 2008-02-20 | 1 | -2/+2 | |
| | ||||||
* | Restructure and add to documentation. | Stefan van der Walt | 2008-02-20 | 1 | -826/+1049 | |
| | ||||||
* | cumprod docstring, median input array coercion | Matthew Brett | 2008-02-19 | 2 | -1/+31 | |
| | ||||||
* | Remove 'Blah, blah' from docstrings. | Stefan van der Walt | 2008-02-19 | 1 | -19/+1 | |
| | ||||||
* | 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 | |
| | | ||||||
* | | For 4D samples, histogramdd returned badly shaped histograms once in a ↵ | dhuard | 2008-02-15 | 1 | -1/+3 | |
| | | | | | | | | while. This should be fixed now. | |||||
* | | Add type specific mergesort for strings and unicode. | Charles Harris | 2008-02-14 | 2 | -90/+155 | |
| | | | | | | | | | | Use adaptive string_copy function suggested by Francesc. Make the sorting code more consistent across types. | |||||
* | | Fixed median axis=None raveling in case of copy | Matthew Brett | 2008-02-14 | 1 | -6/+10 | |
| | | ||||||
* | | Add type specific heapsort for strings and unicode. | Charles Harris | 2008-02-13 | 2 | -6/+57 | |
| | | ||||||
* | | Add type specific heapsort to argsort kind options for strings and unicode. | Charles Harris | 2008-02-13 | 2 | -6/+55 | |
| | | ||||||
* | | Add regression tests for tickets #657 and #658. | Stefan van der Walt | 2008-02-13 | 1 | -0/+10 | |
| | | ||||||
* | | scons build: fail as soon as possible if Python.h is not found. This is ↵ | David Cournapeau | 2008-02-13 | 1 | -0/+6 | |
| | | | | | | | | particularly useful on windows if the platform sdk is not available | |||||
* | | Fix ticket #658 which is a segfault on a corner case for copy detection. | Travis Oliphant | 2008-02-13 | 1 | -1/+1 | |
| | | ||||||
* | | Fix swap error for indexing flat attribute. The data-type of the returned ↵ | Travis Oliphant | 2008-02-13 | 1 | -2/+1 | |
| | | | | | | | | object keeps the byte-swap information so there is no need to swap. | |||||
* | | Add type specific quicksort for strings and unicode in sort and argsort methods. | Charles Harris | 2008-02-13 | 1 | -33/+211 | |
| | | ||||||
* | | Fix some indentation. | Charles Harris | 2008-02-13 | 1 | -4/+4 | |
| | | ||||||
* | | Fix missing mean for median calculation, missing dtype from defmatrix mean ↵ | Matthew Brett | 2008-02-13 | 2 | -3/+3 | |
| | | | | | | | | signature | |||||
* | | Fix, uncomment import in median doctest | Matthew Brett | 2008-02-13 | 1 | -1/+1 | |
| | | ||||||
* | | New implementation of median allowing axis, out keywords | Matthew Brett | 2008-02-13 | 1 | -7/+89 | |
| | | ||||||
* | | Add datasource test file that didn't make it in the move from scipy.io to ↵ | chris.burns | 2008-02-12 | 1 | -0/+248 | |
| | | | | | | | | numpy.lib. | |||||
* | | Make sure that multivariate_normal() uses the standard_normal() method ↵ | Robert Kern | 2008-02-12 | 2 | -1865/+1489 | |
| | | | | | | | | rather than the function so as to use the same consistent state. | |||||
* | | Add tests of the sort and argsort methods preparatory to merging new | Charles Harris | 2008-02-12 | 1 | -0/+168 | |
| | | | | | | | | type specific versions for strings and unicode. | |||||
* | | Fix type. Sorry about that. | Pearu Peterson | 2008-02-12 | 1 | -3/+3 | |
| | | ||||||
* | | hpux fortran compiler support: patch from an user feedback. | Pearu Peterson | 2008-02-12 | 1 | -2/+5 | |
| | | ||||||
* | | initial port from Moin Moin site | Jarrod Millman | 2008-02-10 | 1 | -0/+241 | |
| | | ||||||
* | | Fix whitespace and compiler warning. _compiled_base.c is full of ugly code and | Charles Harris | 2008-02-10 | 1 | -28/+32 | |
| | | | | | | | | is in terrific need of reformating. | |||||
* | | Add tests for sorting strings containing zeros. | Charles Harris | 2008-02-10 | 1 | -0/+12 | |
| | | ||||||
* | | Fix STRING_compare function to work correctly with strings containing zeros. | Charles Harris | 2008-02-10 | 1 | -1/+11 | |
| | | ||||||
* | | Add inline string compare functions for strings and UCS4. The indirect merge | Charles Harris | 2008-02-10 | 1 | -6/+38 | |
| | | | | | | | | | | sort now works correctly for strings. The new functions use the const keyword, which may be a problem with very old C compilers. | |||||
* | | Add PyArray_CompareString function, but don't add it to the OBJECT_API yet. A | Charles Harris | 2008-02-10 | 1 | -0/+18 | |
| | | | | | | | | function not used warning will be issued during compile, but it is harmless. | |||||
* | | Add ma for scons build | David Cournapeau | 2008-02-09 | 2 | -0/+19 | |
| | | ||||||
* | | Do not install config.h, since it not needed anymore for numpy API | David Cournapeau | 2008-02-09 | 1 | -1/+0 | |
| | | ||||||
* | | Merge maskedarray branch. | Stefan van der Walt | 2008-02-09 | 25 | -2298/+9347 | |
|\ \ | |/ | ||||||
| * | Merge maskedarray branch up to r4776. | Stefan van der Walt | 2008-02-09 | 48 | -241/+1892 | |
| |\ | |/ |/| | ||||||
* | | Add numpyconfig.h to the install | chris.burns | 2008-02-08 | 1 | -0/+1 | |
| | | ||||||
* | | ran reindent | Jarrod Millman | 2008-02-08 | 23 | -181/+170 | |
| | |