summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* For kaiser, allow beta to be specified as an integer.Stefan van der Walt2009-03-062-1/+4
|
* Python 3000 fixes for 2to3 [patch by James Watson].Stefan van der Walt2009-03-021-1/+1
|
* Correctly handle gzip filenames in loadtxt.Stefan van der Walt2009-03-022-0/+11
|
* Add test for Gzip loader.Stefan van der Walt2009-02-221-0/+14
|
* Whitespace cleanup.Stefan van der Walt2009-02-221-4/+3
|
* Add GzipFile wrapper to support the "whence" keyword in GzipFile.seek.Stefan van der Walt2009-02-221-1/+36
|
* Fix tests using strptime to be Python 2.4 compatible.Stefan van der Walt2009-02-191-6/+13
|
* Tag known failure on win32.David Cournapeau2009-02-192-0/+5
|
* * genfromtxt : fixed case when using explicit converters and explicit dtype.pierregm2009-02-143-3/+30
|
* Move numpy.lib __doc__ back to info.py; was moved to __init__.py by mistake.Pauli Virtanen2009-02-142-254/+134
|
* Move (un)packbits docstrings to add_newdocs.py. Fix typos.Pauli Virtanen2009-02-141-31/+2
|
* More add_newdocs entries, and make add_newdoc capable of adding docs also to ↵Pauli Virtanen2009-02-143-67/+33
| | | | normal Python objects.
* Removed an unneccessary return statement in a unit test.Travis Oliphant2009-02-061-1/+0
|
* Avoid re-creating the sequence when there is only one field in the regular ↵Travis Oliphant2009-02-061-4/+9
| | | | expression.
* * genfromtxt : Fixed when a dtype involving objects is explicitly given. ↵pierregm2009-02-054-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 importpierregm2009-02-041-10/+11
|
* * test__iotools : prevent test_upgrademapper if dateutil is not installedpierregm2009-02-041-7/+10
| | | | * MaskedArray.__rmul__ : switch to multiply(self, other)
* * Make sure that StringConverter.update sets the type to object if it can't ↵pierregm2009-02-032-2/+18
| | | | define it.
* * Added a 'autoconvert' option to stack_arrays.pierregm2009-02-022-6/+47
| | | | * Fixed 'stack_arrays' to work with fields with titles.
* * _iotools.StringConverter :pierregm2009-01-263-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 ↵pierregm2009-01-221-7/+10
| | | | | | linux) ? * fixed an machine-dependent issue on argsort ?
* * added recfunctions, a collection of utilities to manipulate structured arrays.pierregm2009-01-222-0/+1501
|
* * genfromtxt : if names is True, accept a line starting with a comment ↵pierregm2009-01-222-2/+33
| | | | character as header.
* * lib : introduced _iotoolspierregm2009-01-194-7/+1436
| | | | * lib.io : introduced genfromtxt, ndfromtxt, mafromtxt, recfromtxt, recfromcsv.
* * replace np.asarray by np.asanyarray in unique1dpierregm2009-01-191-2/+8
|
* Make `trapz` accept 1-D `x` parameter for n-d `y`, even if axis != -1.Pauli Virtanen2009-01-172-3/+49
| | | | Additional tests included.
* Fix finfo to work on all instances, not just NumPy scalars.Stefan van der Walt2009-01-142-3/+16
|
* Fix printing of limits.Stefan van der Walt2009-01-141-12/+23
|
* Docstring: remove old floating point arithmetic, parallelStefan van der Walt2009-01-141-17/+4
| | | | execution and postponed import references.
* Use new-style classes with multiple-inheritance to address bug in IronPython.Stefan van der Walt2009-01-061-1/+1
|
* ran reindentJarrod Millman2008-12-312-12/+12
|
* BUG (#827): close temp file before reopning them on windows, and make sure ↵David Cournapeau2008-12-271-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 Virtanen2008-12-131-27/+4
| | | | Scipy ticket #800
* Add bz2 support to loadtxt [patch by Ryan May].Stefan van der Walt2008-11-291-2/+5
|
* Identify file object using 'readline', rather than 'seek'.Stefan van der Walt2008-11-291-1/+1
|
* Reformat spacing in io tests.Stefan van der Walt2008-11-291-33/+37
|
* Opening a memmap requires a filename. Raise an error otherwise.Stefan van der Walt2008-11-291-2/+6
|
* Add test for load's mmap_mode.Stefan van der Walt2008-11-291-26/+61
|
* Add memory map support to `load` [patch by Gael Varoquaux]. Closes #954.Stefan van der Walt2008-11-291-14/+29
|
* Fix ambiguous assert.David Cournapeau2008-11-201-1/+1
|
* removed the `new` argument in the histogram docstring exampledhuard2008-11-121-1/+1
|
* Follow up on changes to histogram: new=False now raises a ↵dhuard2008-11-122-33/+15
| | | | DeprecationWarning, new=True warns users that `new` will disappear in 1.4.
* Add log2 and exp2.Charles Harris2008-11-111-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 Virtanen2008-10-2814-297/+1228
| | | | they are still an improvement)
* Import documentation from doc wiki (part 1)Pauli Virtanen2008-10-273-3/+15
|
* Tag unused variables in numpy.lib C code.David Cournapeau2008-10-081-9/+9
|
* Fix python2.5 dependency in lookforPauli Virtanen2008-09-241-8/+13
|
* Ignore unused converters in `loadtxt`.Stefan van der Walt2008-09-222-1/+16
|
* Removed unused imports.Alan McIntyre2008-09-183-5/+3
|
* Removed unused imports.Alan McIntyre2008-09-093-5/+0
|