Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | For kaiser, allow beta to be specified as an integer. | Stefan van der Walt | 2009-03-06 | 2 | -1/+4 | |
| | ||||||
* | Python 3000 fixes for 2to3 [patch by James Watson]. | Stefan van der Walt | 2009-03-02 | 1 | -1/+1 | |
| | ||||||
* | Correctly handle gzip filenames in loadtxt. | Stefan van der Walt | 2009-03-02 | 2 | -0/+11 | |
| | ||||||
* | Add test for Gzip loader. | Stefan van der Walt | 2009-02-22 | 1 | -0/+14 | |
| | ||||||
* | Whitespace cleanup. | Stefan van der Walt | 2009-02-22 | 1 | -4/+3 | |
| | ||||||
* | Add GzipFile wrapper to support the "whence" keyword in GzipFile.seek. | Stefan van der Walt | 2009-02-22 | 1 | -1/+36 | |
| | ||||||
* | Fix tests using strptime to be Python 2.4 compatible. | Stefan van der Walt | 2009-02-19 | 1 | -6/+13 | |
| | ||||||
* | Tag known failure on win32. | David Cournapeau | 2009-02-19 | 2 | -0/+5 | |
| | ||||||
* | * genfromtxt : fixed case when using explicit converters and explicit dtype. | pierregm | 2009-02-14 | 3 | -3/+30 | |
| | ||||||
* | Move numpy.lib __doc__ back to info.py; was moved to __init__.py by mistake. | Pauli Virtanen | 2009-02-14 | 2 | -254/+134 | |
| | ||||||
* | Move (un)packbits docstrings to add_newdocs.py. Fix typos. | Pauli Virtanen | 2009-02-14 | 1 | -31/+2 | |
| | ||||||
* | More add_newdocs entries, and make add_newdoc capable of adding docs also to ↵ | Pauli Virtanen | 2009-02-14 | 3 | -67/+33 | |
| | | | | normal Python objects. | |||||
* | Removed an unneccessary return statement in a unit test. | Travis Oliphant | 2009-02-06 | 1 | -1/+0 | |
| | ||||||
* | Avoid re-creating the sequence when there is only one field in the regular ↵ | Travis Oliphant | 2009-02-06 | 1 | -4/+9 | |
| | | | | expression. | |||||
* | * genfromtxt : Fixed when a dtype involving objects is explicitly given. ↵ | pierregm | 2009-02-05 | 4 | -6/+77 | |
| | | | | | | Raise a NotImplementedError if the dtype is nested. * _iotools : make sure StringConverter gets properly initiated when a function returning a np.object is used as input parameter. | |||||
* | test_upgrademapper : got rid of the dateutil import | pierregm | 2009-02-04 | 1 | -10/+11 | |
| | ||||||
* | * test__iotools : prevent test_upgrademapper if dateutil is not installed | pierregm | 2009-02-04 | 1 | -7/+10 | |
| | | | | * MaskedArray.__rmul__ : switch to multiply(self, other) | |||||
* | * Make sure that StringConverter.update sets the type to object if it can't ↵ | pierregm | 2009-02-03 | 2 | -2/+18 | |
| | | | | define it. | |||||
* | * Added a 'autoconvert' option to stack_arrays. | pierregm | 2009-02-02 | 2 | -6/+47 | |
| | | | | * Fixed 'stack_arrays' to work with fields with titles. | |||||
* | * _iotools.StringConverter : | pierregm | 2009-01-26 | 3 | -9/+33 | |
| | | | | | | | | - add a _checked attribute to indicate whether the converter has been upgraded or not. - switched the default value for bool to False * io.genfromtxt: - fixed for the case where a whole column is masked: switch to bool or the common dtype (if needed) | |||||
* | * fixed a machine-dependent issue on default int ('<i4' on OS X, '<i8' on ↵ | pierregm | 2009-01-22 | 1 | -7/+10 | |
| | | | | | | linux) ? * fixed an machine-dependent issue on argsort ? | |||||
* | * added recfunctions, a collection of utilities to manipulate structured arrays. | pierregm | 2009-01-22 | 2 | -0/+1501 | |
| | ||||||
* | * genfromtxt : if names is True, accept a line starting with a comment ↵ | pierregm | 2009-01-22 | 2 | -2/+33 | |
| | | | | character as header. | |||||
* | * lib : introduced _iotools | pierregm | 2009-01-19 | 4 | -7/+1436 | |
| | | | | * lib.io : introduced genfromtxt, ndfromtxt, mafromtxt, recfromtxt, recfromcsv. | |||||
* | * replace np.asarray by np.asanyarray in unique1d | pierregm | 2009-01-19 | 1 | -2/+8 | |
| | ||||||
* | Make `trapz` accept 1-D `x` parameter for n-d `y`, even if axis != -1. | Pauli Virtanen | 2009-01-17 | 2 | -3/+49 | |
| | | | | Additional tests included. | |||||
* | Fix finfo to work on all instances, not just NumPy scalars. | Stefan van der Walt | 2009-01-14 | 2 | -3/+16 | |
| | ||||||
* | Fix printing of limits. | Stefan van der Walt | 2009-01-14 | 1 | -12/+23 | |
| | ||||||
* | Docstring: remove old floating point arithmetic, parallel | Stefan van der Walt | 2009-01-14 | 1 | -17/+4 | |
| | | | | execution and postponed import references. | |||||
* | Use new-style classes with multiple-inheritance to address bug in IronPython. | Stefan van der Walt | 2009-01-06 | 1 | -1/+1 | |
| | ||||||
* | ran reindent | Jarrod Millman | 2008-12-31 | 2 | -12/+12 | |
| | ||||||
* | BUG (#827): close temp file before reopning them on windows, and make sure ↵ | David Cournapeau | 2008-12-27 | 1 | -1/+15 | |
| | | | | they are not automatically deleted on close either (2.6and higher specific). | |||||
* | 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 | |
| |