| Commit message (Expand) | Author | Age | Files | Lines |
* | [FIX] preserve memory order in np.copy() | Nathaniel J. Smith | 2012-10-01 | 1 | -2/+4 |
* | MAINT: Use linspace instead of arange in some examples. | endolith | 2012-09-17 | 1 | -3/+3 |
* | BUG: Fix for issues #378 and #392 | Han Genuit | 2012-09-07 | 1 | -6/+8 |
* | Merge pull request #352 from HackerSchool12/bugfix808 | Travis E. Oliphant | 2012-07-17 | 1 | -13/+7 |
|\ |
|
| * | BUG: Ticket #808: Insert was not performing properly when an integer was | Loftie Ellis | 2012-07-15 | 1 | -13/+7 |
* | | Merge pull request #192 from rgommers/meshgrid3d | Travis E. Oliphant | 2012-07-17 | 1 | -33/+106 |
|\ \
| |/
|/| |
|
| * | STY: meshgrid: some minor changes to address review comments. | Ralf Gommers | 2012-02-05 | 1 | -1/+1 |
| * | TST: meshgrid: test expected shapes for Cartesian and matrix indexing. | Ralf Gommers | 2011-12-28 | 1 | -5/+11 |
| * | BUG: meshgrid: raise error on single input. | Ralf Gommers | 2011-12-28 | 1 | -4/+5 |
| * | MAINT: clean up docstring and some minor items in meshgrid. Remove ndgrid. | Ralf Gommers | 2011-12-13 | 1 | -42/+36 |
| * | ENH: enhance meshgrid to generate 3D grids, sparse grids, matrix indexing. | Per A. Brodtkorb | 2011-12-13 | 1 | -34/+106 |
* | | DOC: merge doc wiki edits. A number of small edits in linalg and lib. | Ralf Gommers | 2012-07-07 | 1 | -3/+8 |
* | | DOC: merge wiki edits. Add percentile to statistics routines (ML suggestion). | Ralf Gommers | 2012-07-07 | 1 | -3/+4 |
* | | Remove maskna API from ndarray, and all (and only) the code supporting it | Nathaniel J. Smith | 2012-06-16 | 1 | -10/+2 |
* | | Merge pull request #290 from mforbes/new-vectorize-clean | Travis E. Oliphant | 2012-06-12 | 1 | -141/+179 |
|\ \ |
|
| * | | ENH: Add kwarg support for vectorize (tickets #2100, #1156, and #1487) | Michael McNeil Forbes | 2012-05-31 | 1 | -141/+179 |
* | | | remove unused variables from histogramdd | Jake Vanderplas | 2012-06-11 | 1 | -2/+0 |
|/ / |
|
* | | DOC: merge wiki doc edits. | Ralf Gommers | 2012-03-03 | 1 | -5/+5 |
* | | ENH: Support datetime64, timedelta64 in gradient. Allow array-like input. | Ben Root | 2012-01-27 | 1 | -2/+11 |
|/ |
|
* | ENH: Add function for adding docstrings to ufuncs. | Chris Jordan-Squire | 2011-08-29 | 1 | -1/+7 |
* | ENH: missingdata: Add maskna= parameter to np.copy and ndarray.copy | Mark Wiebe | 2011-08-27 | 1 | -2/+11 |
* | ENH: missingdata: trying some more functions to see how they treat NAs | Mark Wiebe | 2011-08-27 | 1 | -0/+4 |
* | ENH: Faster asarray_chkfinite | Chris Jordan-Squire | 2011-08-13 | 1 | -2/+1 |
* | BUG: fixed histogramdd bug with empty inputs. Closes #1899. | David Huard | 2011-07-24 | 1 | -3/+3 |
* | BUG: fix asarray_chkfinite to take dtype and order args, as advertised | Lars Buitinck | 2011-07-19 | 1 | -4/+4 |
* | ENH: Fix some functions to use copyto instead of the deprecated putmask. | Charles Harris | 2011-07-09 | 1 | -7/+7 |
* | DOC:BUG: fix percentile examples. Closes #1813. | Ralf Gommers | 2011-04-29 | 1 | -7/+6 |
* | STY: Update exception style, easy ones. | Charles Harris | 2011-04-05 | 1 | -1/+1 |
* | DOC: improve clarity of window function docs. | Ralf Gommers | 2011-04-02 | 1 | -55/+33 |
* | BUG: handle empty inputs in cov and corrcoef. Closes #1773. | Ralf Gommers | 2011-04-02 | 1 | -1/+7 |
* | BUG: make histogramdd work with infinite size bins. Closes #1788. | Ralf Gommers | 2011-04-01 | 1 | -7/+23 |
* | DEP: deprecate normed kw in histogram and restore its old behavior. Introduce | Ralf Gommers | 2011-03-30 | 1 | -19/+28 |
* | BUG: make np.median() work for 0-D arrays. Also add tests. Closes #1747. | Ralf Gommers | 2011-03-29 | 1 | -2/+5 |
* | ENH: Make all histogram functions work with empty input. | Ralf Gommers | 2011-03-27 | 1 | -11/+18 |
* | DOC: lib: point the reader towards masked arrays when there is missing data | Pauli Virtanen | 2011-03-25 | 1 | -16/+2 |
* | DOC: Add a note about None values in the average documentation (#1180) | Mark Wiebe | 2011-03-25 | 1 | -0/+15 |
* | ENH: Use fmax.reduce and fmin.reduce to implement nanmax and nanmin. | Charles Harris | 2011-03-07 | 1 | -6/+12 |
* | DOC: commit some more fixes from the doc wiki. | rgommers | 2011-03-03 | 1 | -12/+14 |
* | DOC: merge more doc wiki edits. | rgommers | 2011-03-02 | 1 | -1/+1 |
* | added a warning concerning the buggy normalization in histogram with non-unif... | dhuard | 2010-08-30 | 1 | -0/+11 |
* | Fixed bug in histogram for non-uniform bin widths and normed=True. | dhuard | 2010-08-27 | 1 | -1/+1 |
* | DOC: wiki merge, npyio, format and function_base | rgommers | 2010-07-31 | 1 | -25/+45 |
* | ENH: Make trapz work with ndarray subclasses. Thanks to Ryan May. Closes #1438. | rgommers | 2010-07-31 | 1 | -5/+11 |
* | ENH: Add ddof keyword to masked versions of cov and corrcoef. | Charles Harris | 2010-07-07 | 1 | -4/+8 |
* | Fix missing rowvar in cov call in corrcoeff. | Charles Harris | 2010-07-07 | 1 | -1/+1 |
* | Don't deprecated bias keyword, just add ddof. | Charles Harris | 2010-07-07 | 1 | -41/+25 |
* | ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword. | Charles Harris | 2010-07-07 | 1 | -29/+56 |
* | BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523) | Pauli Virtanen | 2010-06-27 | 1 | -0/+1 |
* | CLN: Cleanup nanops code a bit. Patch is from Tony Yu. | Charles Harris | 2010-06-07 | 1 | -7/+7 |
* | BUG: Fix failed detection of unsigned integers in _nanop. Fixes ticket #1300. | Charles Harris | 2010-05-26 | 1 | -1/+1 |