| Commit message (Expand) | Author | Age | Files | Lines |
* | BUG: Fix some tests in PR #192 | Travis E. Oliphant | 2012-07-17 | 1 | -8/+8 |
* | Merge pull request #352 from HackerSchool12/bugfix808 | Travis E. Oliphant | 2012-07-17 | 1 | -1/+2 |
|\ |
|
| * | BUG: Ticket #808: Insert was not performing properly when an integer was | Loftie Ellis | 2012-07-15 | 1 | -1/+2 |
* | | Merge pull request #192 from rgommers/meshgrid3d | Travis E. Oliphant | 2012-07-17 | 1 | -0/+28 |
|\ \
| |/
|/| |
|
| * | STY: meshgrid: some minor changes to address review comments. | Ralf Gommers | 2012-02-05 | 1 | -4/+1 |
| * | TST: meshgrid: test expected shapes for Cartesian and matrix indexing. | Ralf Gommers | 2011-12-28 | 1 | -1/+12 |
| * | BUG: meshgrid: raise error on single input. | Ralf Gommers | 2011-12-28 | 1 | -0/+4 |
| * | MAINT: clean up docstring and some minor items in meshgrid. Remove ndgrid. | Ralf Gommers | 2011-12-13 | 1 | -2/+0 |
| * | ENH: enhance meshgrid to generate 3D grids, sparse grids, matrix indexing. | Per A. Brodtkorb | 2011-12-13 | 1 | -0/+18 |
* | | ENH: Add kwarg support for vectorize (tickets #2100, #1156, and #1487) | Michael McNeil Forbes | 2012-05-31 | 1 | -27/+128 |
* | | BUG: Fix missing np prefix in test_function_base.py. | Charles Harris | 2012-04-05 | 1 | -1/+1 |
* | | TST: Add namespaces to digitize tests + one more test | Skipper Seabold | 2012-04-03 | 1 | -9/+17 |
* | | ENH: Give digitize left or right open interval option | Skipper Seabold | 2012-04-03 | 1 | -0/+15 |
* | | STY: Style cleanups in numpy/lib/tests/test_function_base. | Charles Harris | 2012-04-01 | 1 | -240/+245 |
* | | ENH: improve interp() speed in some cases. | Timo Kluck | 2012-04-01 | 1 | -0/+5 |
* | | ENH: Allow bincount to accept empty arrays. | Skipper Seabold | 2012-03-04 | 1 | -0/+11 |
* | | TST: filter RuntimeWarnings for invalids from some more test files. | Ralf Gommers | 2012-03-02 | 1 | -8/+12 |
* | | TST: Test gradient(...) of datetime64 and timedelta64 arrays. | Ben Root | 2012-01-27 | 1 | -1/+19 |
|/ |
|
* | ENH: Add function for adding docstrings to ufuncs. | Chris Jordan-Squire | 2011-08-29 | 1 | -0/+12 |
* | ENH: umath: Make sum, prod, any, or functions use the .reduce method directly | Mark Wiebe | 2011-08-27 | 1 | -1/+1 |
* | BUG: fixed histogramdd bug with empty inputs. Closes #1899. | David Huard | 2011-07-24 | 1 | -1/+4 |
* | Regression test for missing dtype and order args in asarray_chkfinite | Lars Buitinck | 2011-07-19 | 1 | -0/+6 |
* | BUG: handle empty inputs in cov and corrcoef. Closes #1773. | Ralf Gommers | 2011-04-02 | 1 | -0/+14 |
* | BUG: make histogramdd work with infinite size bins. Closes #1788. | Ralf Gommers | 2011-04-01 | 1 | -0/+25 |
* | DEP: deprecate normed kw in histogram and restore its old behavior. Introduce | Ralf Gommers | 2011-03-30 | 1 | -8/+19 |
* | BUG: make np.median() work for 0-D arrays. Also add tests. Closes #1747. | Ralf Gommers | 2011-03-29 | 1 | -0/+11 |
* | ENH: Make all histogram functions work with empty input. | Ralf Gommers | 2011-03-27 | 1 | -2/+9 |
* | BUG: Use isnan to test for nan, avoids problems with signed nans. | Charles Harris | 2011-03-07 | 1 | -40/+41 |
* | ENH: Add minlength keyword to bincount. Patch from ticket #1595. | David Warde-Farley | 2011-01-10 | 1 | -0/+15 |
* | Made sure the warning filters in test_function_base and test_arraysetops do n... | dhuard | 2010-08-31 | 1 | -4/+7 |
* | added a warning concerning the buggy normalization in histogram with non-unif... | dhuard | 2010-08-30 | 1 | -1/+4 |
* | Fixed bug in histogram for non-uniform bin widths and normed=True. | dhuard | 2010-08-27 | 1 | -7/+24 |
* | ENH: Make trapz work with ndarray subclasses. Thanks to Ryan May. Closes #1438. | rgommers | 2010-07-31 | 1 | -0/+26 |
* | ENH: Add ddof keyword to masked versions of cov and corrcoef. | Charles Harris | 2010-07-07 | 1 | -23/+28 |
* | Don't deprecated bias keyword, just add ddof. | Charles Harris | 2010-07-07 | 1 | -2/+2 |
* | ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword. | Charles Harris | 2010-07-07 | 1 | -2/+2 |
* | BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523) | Pauli Virtanen | 2010-06-27 | 1 | -0/+7 |
* | ENH: Add tests for nan[arg]min, nan[arg]max) for various integer types. | Charles Harris | 2010-05-29 | 1 | -0/+32 |
* | ENH: Test the exceptions and the left, right keywords of the interp | Charles Harris | 2010-05-24 | 1 | -0/+10 |
* | BUG: Correctly handle in-place output in percentile. | Stefan van der Walt | 2010-05-16 | 1 | -1/+20 |
* | BUG: Allow any array-like input to percentile. | Stefan van der Walt | 2010-05-16 | 1 | -0/+3 |
* | BUG: Make interp handle zero dimensional ndarrays as interpolation | Charles Harris | 2010-05-07 | 1 | -1/+29 |
* | Merge branch 'vectorize' | Charles Harris | 2010-05-06 | 1 | -12/+69 |
* | BUG: fix kaiser for M=1. | David Cournapeau | 2010-03-31 | 1 | -1/+1 |
* | * Use putmask instead of fancy indexing in _nanop (bug #1421) | pierregm | 2010-03-22 | 1 | -382/+391 |
* | BUG: lib: fix #1435, np.gradient should use zeros_like | Pauli Virtanen | 2010-03-18 | 1 | -0/+5 |
* | DEP: Fix more files for unittest deprecated functions. It isn't clear why these | Charles Harris | 2010-02-21 | 1 | -6/+6 |
* | removed old behavior for the histogram function. | dhuard | 2010-02-16 | 1 | -13/+2 |
* | TST: add a couple of simple unit-tests for bincount. | David Cournapeau | 2010-02-02 | 1 | -0/+23 |
* | Move linspace and logspace into core. | David Cournapeau | 2009-09-16 | 1 | -36/+0 |