Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get lstsq and eigvals from numpy.linalg, not from numpy.dual. Addresses ↵ | Pauli Virtanen | 2008-12-13 | 1 | -27/+4 |
| | | | | Scipy ticket #800 | ||||
* | Add bz2 support to loadtxt [patch by Ryan May]. | Stefan van der Walt | 2008-11-29 | 1 | -2/+5 |
| | |||||
* | Identify file object using 'readline', rather than 'seek'. | Stefan van der Walt | 2008-11-29 | 1 | -1/+1 |
| | |||||
* | Reformat spacing in io tests. | Stefan van der Walt | 2008-11-29 | 1 | -33/+37 |
| | |||||
* | Opening a memmap requires a filename. Raise an error otherwise. | Stefan van der Walt | 2008-11-29 | 1 | -2/+6 |
| | |||||
* | Add test for load's mmap_mode. | Stefan van der Walt | 2008-11-29 | 1 | -26/+61 |
| | |||||
* | Add memory map support to `load` [patch by Gael Varoquaux]. Closes #954. | Stefan van der Walt | 2008-11-29 | 1 | -14/+29 |
| | |||||
* | Fix ambiguous assert. | David Cournapeau | 2008-11-20 | 1 | -1/+1 |
| | |||||
* | removed the `new` argument in the histogram docstring example | dhuard | 2008-11-12 | 1 | -1/+1 |
| | |||||
* | Follow up on changes to histogram: new=False now raises a ↵ | dhuard | 2008-11-12 | 2 | -33/+15 |
| | | | | DeprecationWarning, new=True warns users that `new` will disappear in 1.4. | ||||
* | Add log2 and exp2. | Charles Harris | 2008-11-11 | 1 | -1/+1 |
| | | | | | | | Fix scimath to use log2. Complex versions of these functions need to be added. MPL also defines log2 with slightly different properties. For instance, it returns an integer value for log2(2). | ||||
* | Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵ | Pauli Virtanen | 2008-10-28 | 14 | -297/+1228 |
| | | | | they are still an improvement) | ||||
* | Import documentation from doc wiki (part 1) | Pauli Virtanen | 2008-10-27 | 3 | -3/+15 |
| | |||||
* | Tag unused variables in numpy.lib C code. | David Cournapeau | 2008-10-08 | 1 | -9/+9 |
| | |||||
* | Fix python2.5 dependency in lookfor | Pauli Virtanen | 2008-09-24 | 1 | -8/+13 |
| | |||||
* | Ignore unused converters in `loadtxt`. | Stefan van der Walt | 2008-09-22 | 2 | -1/+16 |
| | |||||
* | Removed unused imports. | Alan McIntyre | 2008-09-18 | 3 | -5/+3 |
| | |||||
* | Removed unused imports. | Alan McIntyre | 2008-09-09 | 3 | -5/+0 |
| | |||||
* | FIX: Loadtxt raises on empty input (closes #908). | Stefan van der Walt | 2008-09-09 | 2 | -7/+11 |
| | |||||
* | Applied patch from R. May fixing ticket #905 (loadtxt). Fixed other bug ↵ | dhuard | 2008-09-05 | 2 | -3/+20 |
| | | | | occurring when both usecols and converters are provided. Added related regression tests. | ||||
* | reindenting prior to release | Jarrod Millman | 2008-09-02 | 4 | -10/+10 |
| | |||||
* | Disable memmap test which crashes nose tests on cygwin. | David Cournapeau | 2008-09-01 | 1 | -1/+1 |
| | |||||
* | Apply modified version of Andrew Dalke's patch in #874 to create a ↵ | Travis Oliphant | 2008-08-27 | 2 | -14/+39 |
| | | | | quicker-loading numpy. | ||||
* | Revert r5698, r5699, and r5702 until build problems are fixed. | Charles Harris | 2008-08-27 | 1 | -14/+17 |
| | | | | Fix ticket #878 differently. | ||||
* | Added benchmarks directory to lib/setup.py so that numpy.lib benchmarks are | Alan McIntyre | 2008-08-26 | 1 | -0/+1 |
| | | | | | available in an installed NumPy. Display system configuration information when benchmarks are run. | ||||
* | Use trunc as fix implementation. | David Cournapeau | 2008-08-25 | 1 | -11/+2 |
| | |||||
* | Fix fix tests. | David Cournapeau | 2008-08-25 | 1 | -3/+3 |
| | |||||
* | Add a note on scimath.sqrt for the definition of square root as the ↵ | David Cournapeau | 2008-08-20 | 1 | -0/+16 |
| | | | | principal square root. | ||||
* | Re-factor code to remove dependency of numpy.core on numpy.lib by moving ↵ | Travis Oliphant | 2008-08-15 | 1 | -43/+2 |
| | | | | issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes | ||||
* | Unique1d will now return unique as well as reverse indices. Fix order of | Stefan van der Walt | 2008-08-13 | 2 | -12/+53 |
| | | | | returns [patch by Robert Cimrman]. | ||||
* | Disable memmap test on windows because it crashes the testsuite. This has to ↵ | David Cournapeau | 2008-08-13 | 1 | -31/+34 |
| | | | | be fixed before a rc of numpy 1.2.0, though (see#827). | ||||
* | Add Roberto de Almeida's Arrayterator. | Stefan van der Walt | 2008-08-13 | 3 | -0/+190 |
| | |||||
* | More consistent nan-operations. | Stefan van der Walt | 2008-08-12 | 2 | -20/+38 |
| | |||||
* | breaking API for median | Jarrod Millman | 2008-08-08 | 1 | -12/+9 |
| | |||||
* | ran reindent | Jarrod Millman | 2008-08-08 | 15 | -70/+61 |
| | |||||
* | Remove piece-by-piece docstring assembly; the full texts were inserted in ↵ | Pauli Virtanen | 2008-08-08 | 1 | -79/+0 |
| | | | | the docstrings in r5610 | ||||
* | added comment in histogram warning. | dhuard | 2008-08-05 | 1 | -0/+2 |
| | |||||
* | Follow-up on changes to histogram semantics. | dhuard | 2008-08-05 | 2 | -59/+85 |
| | | | | `new` is now set to None by default, which triggers the new behaviour and prints a warning. | ||||
* | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 16 | -1044/+3857 |
| | |||||
* | Defer tempfile import to improve startup time. | Stefan van der Walt | 2008-07-31 | 1 | -1/+1 |
| | |||||
* | Fix string type comparisons. | Stefan van der Walt | 2008-07-30 | 1 | -4/+4 |
| | |||||
* | Added tests to improve coverage. | Alan McIntyre | 2008-07-24 | 1 | -25/+44 |
| | | | | Converted tests from doctests to unit tests. | ||||
* | Standardized NumPy import as "import numpy as np". | Alan McIntyre | 2008-07-23 | 2 | -84/+87 |
| | | | | Moved unique1d benchmarking code to new benchmarks directory. | ||||
* | Fix doctest command continuation line. | Alan McIntyre | 2008-07-23 | 1 | -1/+1 |
| | |||||
* | Added tests to improve coverage of numpy.lib. | Alan McIntyre | 2008-07-22 | 3 | -1/+60 |
| | |||||
* | Clean up loadtxt. Fix Python 2.3 compatibility. | Stefan van der Walt | 2008-07-22 | 1 | -9/+10 |
| | |||||
* | Apply Stefan's patch for Ryan's loadtext fix. | Charles Harris | 2008-07-22 | 2 | -34/+87 |
| | |||||
* | Committed patch from Ryan May. It fixes error in loadtxt occurring when ↵ | dhuard | 2008-07-22 | 2 | -2/+17 |
| | | | | | | usecols is not None and dtypes are given. I added the test suggested by Ryan. | ||||
* | Removed unused private function _asarray1d. | Alan McIntyre | 2008-07-21 | 1 | -8/+0 |
| | |||||
* | Add a pydoc import in lookfor; missed in the import refactoring. | Pauli Virtanen | 2008-07-20 | 1 | -0/+2 |
| |