summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Add regression test for #628.David Cournapeau2008-03-211-0/+33
|
* added docstring to diagflat.dhuard2008-03-201-0/+16
|
* And add bincount to error message.Charles Harris2008-03-191-1/+1
|
* More typo fixing.Charles Harris2008-03-191-7/+7
|
* Fix histogram references in arr_bincount.Charles Harris2008-03-191-14/+15
|
* Clean up of average function. weights now should have the same shape as a, ↵dhuard2008-03-192-62/+92
| | | | or be 1D with length equal to the shape of a along axis. A number of tests are added.
* Change ValueError to TypeError in averageCharles Harris2008-03-161-2/+2
|
* Fix average to preserve matrices.Charles Harris2008-03-161-35/+31
| | | | Fix average documentation.
* Rewrite average and document it.Charles Harris2008-03-162-67/+92
| | | | | | Remove inappropriate test of average. This should close ticket 700, but someone else should check the documentation to see if the new function does what it is supposed to, whatever the heck that was.
* Clean up polyfit documentation.Charles Harris2008-03-151-38/+49
| | | | Add documentation for polyval.
* Fix polyfit for 2D case and add test for same. Fixes ticket 697.Charles Harris2008-03-152-41/+83
|
* Added a test for average. It uncovers a bug related to the shape of the weights.dhuard2008-03-141-0/+14
|
* Added test for 4D histogramdd case. Ticket 690.dhuard2008-03-141-9/+32
|
* Correct condition.Robert Kern2008-02-281-1/+1
|
* Typo.Robert Kern2008-02-281-1/+1
|
* One dtype representation issue got fixed. Documented the remaining one.Robert Kern2008-02-271-6/+7
|
* Handle the no-comment case correctly.Robert Kern2008-02-271-1/+5
|
* Documentation update for the NPY format.Robert Kern2008-02-271-7/+9
|
* Return to condition where overwrite_output for median raises error for ↵Matthew Brett2008-02-241-2/+2
| | | | non-ndarray input
* Add Anne Archibald's fix to average to remove eval.Travis Oliphant2008-02-231-3/+3
|
* Fix bug reported by Debian package maintainer.Travis Oliphant2008-02-231-1/+1
|
* Use x.any() instead of any(x)Robert Kern2008-02-201-2/+2
|
* cumprod docstring, median input array coercionMatthew Brett2008-02-191-1/+4
|
* For 4D samples, histogramdd returned badly shaped histograms once in a ↵dhuard2008-02-151-1/+3
| | | | while. This should be fixed now.
* Fixed median axis=None raveling in case of copyMatthew Brett2008-02-141-6/+10
|
* Fix missing mean for median calculation, missing dtype from defmatrix mean ↵Matthew Brett2008-02-131-1/+1
| | | | signature
* Fix, uncomment import in median doctestMatthew Brett2008-02-131-1/+1
|
* New implementation of median allowing axis, out keywordsMatthew Brett2008-02-131-7/+89
|
* Add datasource test file that didn't make it in the move from scipy.io to ↵chris.burns2008-02-121-0/+248
| | | | numpy.lib.
* Fix whitespace and compiler warning. _compiled_base.c is full of ugly code andCharles Harris2008-02-101-28/+32
| | | | is in terrific need of reformating.
* ran reindentJarrod Millman2008-02-087-71/+60
|
* Merge revisions 4721:4771 from the trunkJarrod Millman2008-02-081-0/+1
|\
| * Fix bug in ticket #592 for non-array sequence bin arguments.Travis Oliphant2008-01-221-0/+1
| |
* | numpy.lib now builds with sconsDavid Cournapeau2008-01-072-0/+28
|/
* Removed dependency on nose.tools. Ripped nose.tools.raise and placed it in ↵Travis Oliphant2008-01-021-3/+1
| | | | numpy.testing
* Fix deprecate_with_doc and deprecate for builtin functions.Travis Oliphant2007-12-302-8/+16
|
* Merge the lib_for_io branch back into the trunk.Travis Oliphant2007-12-307-7/+2153
|\
| * Create a branch for io work in NumPyTravis Oliphant2007-12-1527-7887/+0
| |
* | Add docstrings with examples for all functions, according to current standard.Fernando Perez2007-12-301-7/+359
| | | | | | | | | | | | | | | | If you have nose installed, the examples can be used as doctests with: nosetests --with-doctest numpy.lib.scimath
* | more janitorial workJarrod Millman2007-12-293-12/+10
| |
* | Convert some internal classes in index_tricks.py to CamelCasecookedm2007-12-261-16/+18
| |
* | Add test for setdiff1d on character arrays.Stefan van der Walt2007-12-211-0/+4
| |
* | fixed setmember1d for string arraysRobert Cimrman2007-12-201-3/+6
|/
* replaced apply() with direct function callJarrod Millman2007-11-261-4/+4
|
* Edited module docstring.Robert Cimrman2007-11-201-3/+5
|
* Expand linspace docstring.cookedm2007-11-031-1/+29
|
* ran reindent.py to clean up whitespaceJarrod Millman2007-10-297-17/+16
|
* Avoid extra copy if otype is object on output.Travis Oliphant2007-10-191-3/+3
|
* Fix so that vectorize passes sub-classes through.Travis Oliphant2007-10-191-2/+3
|
* raise error if histogram is called with a decending range to bin into (see #586)Jarrod Millman2007-10-191-0/+9
|