summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge deprecate_with_doc into deprecate(message="...").Stefan van der Walt2009-10-251-2/+2
|
* Docstring update: libPauli Virtanen2009-10-021-44/+182
|
* Docstring updates, part 1Pauli Virtanen2009-10-021-0/+3
|
* All non core regressions tests moved to their respective modules.David Cournapeau2009-09-161-1/+1
|
* Move linspace and logspace into core.David Cournapeau2009-09-161-156/+2
|
* Fixed compatibility issue of histogram with matplotlib 0.91.2dhuard2009-08-121-3/+3
|
* Enhancements to arraysetops (ticket #1133, by Neil Crighton)Robert Cimrman2009-07-081-24/+5
|
* Merge from doc wikiPauli Virtanen2009-06-191-79/+144
|
* docstring: fix bug in blackman docstringPauli Virtanen2009-05-211-1/+1
|
* Docstring fixes: make some examples to work properlyPauli Virtanen2009-05-201-17/+26
|
* Make histogramdd documentation a bit clearer.Charles Harris2009-04-101-2/+3
|
* Fix ticket #928Charles Harris2009-04-101-1/+3
|
* Fix nanmin, -max etc. to handle axis argument correctly.Stefan van der Walt2009-03-261-6/+16
|
* Merge from the doc wikiPauli Virtanen2009-03-241-58/+149
|
* Merge reviewed docstrings from editor.Stefan van der Walt2009-03-081-2/+2
|
* For kaiser, allow beta to be specified as an integer.Stefan van der Walt2009-03-061-1/+1
|
* Python 3000 fixes for 2to3 [patch by James Watson].Stefan van der Walt2009-03-021-1/+1
|
* More add_newdocs entries, and make add_newdoc capable of adding docs also to ↵Pauli Virtanen2009-02-141-47/+0
| | | | normal Python objects.
* Make `trapz` accept 1-D `x` parameter for n-d `y`, even if axis != -1.Pauli Virtanen2009-01-171-3/+11
| | | | Additional tests included.
* ran reindentJarrod Millman2008-12-311-8/+8
|
* 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-121-32/+14
| | | | DeprecationWarning, new=True warns users that `new` will disappear in 1.4.
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵Pauli Virtanen2008-10-281-95/+337
| | | | they are still an improvement)
* Import documentation from doc wiki (part 1)Pauli Virtanen2008-10-271-0/+11
|
* More consistent nan-operations.Stefan van der Walt2008-08-121-20/+37
|
* breaking API for medianJarrod Millman2008-08-081-12/+9
|
* ran reindentJarrod Millman2008-08-081-25/+25
|
* added comment in histogram warning.dhuard2008-08-051-0/+2
|
* Follow-up on changes to histogram semantics.dhuard2008-08-051-29/+49
| | | | `new` is now set to None by default, which triggers the new behaviour and prints a warning.
* Merge from documentation editor.Stefan van der Walt2008-08-051-293/+1386
|
* Removed unused private function _asarray1d.Alan McIntyre2008-07-211-8/+0
|
* Piecewise should not expose raw memory. Closes #798.Stefan van der Walt2008-07-081-7/+12
|
* Use the implicit "import numpy as np" made available to all doctests instead Alan McIntyre2008-07-051-17/+16
| | | | | of explicit imports or dependency on the local scope where the doctest is defined..
* Use the implicit "import numpy as np" made available to all doctests instead ↵Alan McIntyre2008-07-031-33/+29
| | | | | | | of an explicit import. Remove ">>>" from bartlett plotting example since it currently requires matplotlib.
* Fix piecewise to handle 0-d inputs.Travis Oliphant2008-06-171-1/+20
|
* Fix math markup in docstrings.Stefan van der Walt2008-05-191-2/+5
|
* Fix math in Bartlett docstring.Stefan van der Walt2008-05-191-1/+1
|
* Merge documentation changes from wiki.Stefan van der Walt2008-05-191-4/+94
|
* Fix ReST markup in docstrings.Stefan van der Walt2008-05-161-133/+143
|
* histogram: an error is raised for varying bin widths only if normed=True.dhuard2008-04-251-3/+13
|
* Fix to histogram with respect to block updating.adhuard2008-04-251-6/+6
|
* Modified histogram according to the discussion on the numpy ML.dhuard2008-04-251-63/+159
| | | | This transitions from the old behavior to the new behavior using the new keyword.
* ran reindent in preparation for the 1.1 releaseJarrod Millman2008-04-201-26/+26
|
* Added patch from ticket #610 to allow floats in interp.Travis Oliphant2008-03-271-18/+18
|
* Clean up of average function. weights now should have the same shape as a, ↵dhuard2008-03-191-52/+44
| | | | 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-161-54/+80
| | | | | | 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.
* 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
|