- fd544cd Backport r5498 fixes to loadtxt. by Charles Harris · 17 years ago
- ebc870e Backport r5465. by Charles Harris · 17 years ago
- 454ce6f Backport r5324 and r5320 by copying format.py from trunk. by Charles Harris · 17 years ago
- 00ab08a Backport r5342. by Robert Kern · 17 years ago
- aada0c2 Merge changeset 5359:5360 from trunk. by Stefan van der Walt · 17 years ago
- 268dcd9 More backporting of scons changes: require 0.8.2 by David Cournapeau · 17 years ago
- e656e66 Merge revisions 5266:5288: update scons scripts to new variant_dir conventions by David Cournapeau · 17 years ago
- b417c5e Merge revision 5258 from trunk: some updates to scons scripts. by David Cournapeau · 17 years ago
- 3475f5b Backport fix for ticket #828. by Charles Harris · 17 years ago
- be47c6f Adapat numpy.lib scons build to new build_dir conventions. by David Cournapeau · 17 years ago
- a7eb6e9 Adapt numpy.lib to new scons build_dir behavior. by David Cournapeau · 17 years ago
- 942d2dc Merged revisions 5204-5257 via svnmerge from by David Cournapeau · 17 years ago
- 9525f46 fixed whitespace w/ reindent by Jarrod Millman · 17 years ago
- a29ca1a by David Cournapeau · 17 years ago
- 399147b Fix math markup in docstrings. by Stefan van der Walt · 17 years ago
- 89f1a4e Fix math in Bartlett docstring. by Stefan van der Walt · 17 years ago
- 40505ed Merge documentation changes from wiki. by Stefan van der Walt · 17 years ago
- 46768e6 Fix ReST markup in docstrings. by Stefan van der Walt · 17 years ago
- 8f60b48 Restore change to docstring overwritten by wiki merge. by Stefan van der Walt · 17 years ago
- b12d078 Merge docstrings from wiki. by Stefan van der Walt · 17 years ago
- e3d0fec Fix ticket #791. by Travis Oliphant · 17 years ago
- 3d336c3 Suppress test output. by Stefan van der Walt · 17 years ago
- 59e7bda Disable underflow warning reporting when testing for arch + test (#759). by David Cournapeau · 17 years ago
- cdc4c0a Add comments to savetxt. by Stefan van der Walt · 17 years ago
- e311e8d Support for multi formatting elements in savetxt [patch by David Huard]. by Stefan van der Walt · 17 years ago
- 1c89c15 histogram: an error is raised for varying bin widths only if normed=True. by dhuard · 17 years ago
- b64dbce Added an ignore warning in the test to avoid buildbot messages. by dhuard · 17 years ago
- bb61ebc Fix to histogram with respect to block updating.a by dhuard · 17 years ago
- c411951 Modified histogram according to the discussion on the numpy ML. by dhuard · 17 years ago
- 8c66331 ran reindent in preparation for the 1.1 release by Jarrod Millman · 17 years ago
- b4be377 Fixing #738: Even more careful drive letter handling. And make the tests actually pass on Windows. by Pauli Virtanen · 17 years ago
- 3888ac4 Fixing #738: remember to sanitize away also Windows drive letters by Pauli Virtanen · 17 years ago
- 5fc5deb Fix bug #738 and add corresponding tests. by Pauli Virtanen · 17 years ago
- ddde39b Don't require gzip or bz2 until the actual functionality is requested. by Robert Kern · 17 years ago
- 13f9b4a Added and fixed some tests for loadtxt and savetxt. Cleaned up the docstring of savetxt, added some info on formatting. by dhuard · 17 years ago
- 65dd4ae Fix fromregex, add documentation and tests [patch by Pauli Virtanen]. by Stefan van der Walt · 17 years ago
- 1ea8005 Compare against native-endian types, not endian-specific types. by Robert Kern · 17 years ago
- a0726b5 Add lookfor function from ticket #734 by Travis Oliphant · 17 years ago
- 3811cb8 Add one more test from ticket #728 by Travis Oliphant · 17 years ago
- 7e1350d Fixed #728 scalar coercion problem with mixed types and r_ by Travis Oliphant · 17 years ago
- 7e0f986 Fix vander docstring. by Stefan van der Walt · 17 years ago
- 0b0a389 Added test for handling missing data using loadtxt. by dhuard · 17 years ago
- 737f9a1 Formatted the docstring. Added comment regarding the handling of missing values. Addresses ticket #717. by dhuard · 17 years ago
- b21be67 Fix doc-tests for financial.py so they don't rely on floating-point exactness. Start filling in final function. by Travis Oliphant · 17 years ago
- 0035f91 Improve comments. by Travis Oliphant · 17 years ago
- 7d51a22 Add docs and examples for financial functions. by Travis Oliphant · 17 years ago
- f2e6d8e Modified io._getconv to allow loading values stored as float as integers arrays. Added test to check the behavior as suggested in the comment from b. southey in by dhuard · 17 years ago
- 3438413 Add modified internal rate of return calculation which is more conservative and takes into account re-investing profits and expense of financing losses. by Travis Oliphant · 17 years ago
- effc09b Add fromregex function (needs more testing) and some simple spreadsheet-like financial calculations. by Travis Oliphant · 17 years ago
- 1b8a670 added 1D tests for loadtxt and savetxt. Fixed a bug by dhuard · 17 years ago
- 8784a1a Fixed a bug with loadtxt and savetxt failing on record arrays. This addresses ticket #623. by dhuard · 17 years ago
- 084582b Added patch from ticket #610 to allow floats in interp. by Travis Oliphant · 17 years ago
- 948e086 Add regression test for #628. by David Cournapeau · 17 years ago
- bb41c67 added docstring to diagflat. by dhuard · 17 years ago
- 9807248 And add bincount to error message. by Charles Harris · 17 years ago
- 8ae9e39 More typo fixing. by Charles Harris · 17 years ago
- fd291ca Fix histogram references in arr_bincount. by Charles Harris · 17 years ago
- 4482e5f Clean up of average function. weights now should have the same shape as a, or be 1D with length equal to the shape of a along axis. A number of tests are added. by dhuard · 17 years ago
- 07ed95f Change ValueError to TypeError in average by Charles Harris · 17 years ago
- 345b13d Fix average to preserve matrices. Fix average documentation. by Charles Harris · 17 years ago
- d40e565 Rewrite average and document it. by Charles Harris · 17 years ago
- 857b6ba Clean up polyfit documentation. Add documentation for polyval. by Charles Harris · 17 years ago
- ebab42e Fix polyfit for 2D case and add test for same. Fixes ticket 697. by Charles Harris · 17 years ago
- 96bf0c7 Added a test for average. It uncovers a bug related to the shape of the weights. by dhuard · 17 years ago
- 6b3b8d4 Added test for 4D histogramdd case. Ticket 690. by dhuard · 17 years ago
- f01d8e5 Correct condition. by Robert Kern · 17 years ago
- 7615661 Typo. by Robert Kern · 17 years ago
- 4bff077 One dtype representation issue got fixed. Documented the remaining one. by Robert Kern · 17 years ago
- a5615d4 Handle the no-comment case correctly. by Robert Kern · 17 years ago
- 2cb12ec Documentation update for the NPY format. by Robert Kern · 17 years ago
- 5089f5d Return to condition where overwrite_output for median raises error for non-ndarray input by Matthew Brett · 18 years ago
- 0abaf57 Add Anne Archibald's fix to average to remove eval. by Travis Oliphant · 18 years ago
- 1cc67dd Fix bug reported by Debian package maintainer. by Travis Oliphant · 18 years ago
- 3937248 Use x.any() instead of any(x) by Robert Kern · 18 years ago
- 9555d91 cumprod docstring, median input array coercion by Matthew Brett · 18 years ago
- 5cc1b4e For 4D samples, histogramdd returned badly shaped histograms once in a while. This should be fixed now. by dhuard · 18 years ago
- c1408e3 Fixed median axis=None raveling in case of copy by Matthew Brett · 18 years ago
- 90543a6 Fix missing mean for median calculation, missing dtype from defmatrix mean signature by Matthew Brett · 18 years ago
- 2b608e1 Fix, uncomment import in median doctest by Matthew Brett · 18 years ago
- e072ab0 New implementation of median allowing axis, out keywords by Matthew Brett · 18 years ago
- 82f37ae Add datasource test file that didn't make it in the move from scipy.io to numpy.lib. by chris.burns · 18 years ago
- 9109ba9 Fix whitespace and compiler warning. _compiled_base.c is full of ugly code and by Charles Harris · 18 years ago
- c66da19 ran reindent by Jarrod Millman · 18 years ago
- fb3f711 Merge revisions 4721:4771 from the trunk by Jarrod Millman · 18 years ago
- c1efbb1 Fix bug in ticket #592 for non-array sequence bin arguments. by Travis Oliphant · 18 years ago
- fe79167 numpy.lib now builds with scons by David Cournapeau · 18 years ago
- 721e160 Removed dependency on nose.tools. Ripped nose.tools.raise and placed it in numpy.testing by Travis Oliphant · 18 years ago
- 79d187a Fix deprecate_with_doc and deprecate for builtin functions. by Travis Oliphant · 18 years ago
- fdeac74 Merge the lib_for_io branch back into the trunk. by Travis Oliphant · 18 years ago
- b4a25a4 Add docstrings with examples for all functions, according to current standard. by Fernando Perez · 18 years ago
- 72297ed more janitorial work by Jarrod Millman · 18 years ago
- 2a726d2 Convert some internal classes in index_tricks.py to CamelCase by cookedm · 18 years ago
- c7b8c28 Add test for setdiff1d on character arrays. by Stefan van der Walt · 18 years ago
- 6509e21 fixed setmember1d for string arrays by Robert Cimrman · 18 years ago
- 3fe715c replaced apply() with direct function call by Jarrod Millman · 18 years ago
- d9976a9 Edited module docstring. by Robert Cimrman · 18 years ago
- 18d3af5 Expand linspace docstring. by cookedm · 18 years ago
- 0b77f0e ran reindent.py to clean up whitespace by Jarrod Millman · 18 years ago
- 440a5f9 Avoid extra copy if otype is object on output. by Travis Oliphant · 18 years ago
- e052f24 Fix so that vectorize passes sub-classes through. by Travis Oliphant · 18 years ago