summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
Commit message (Expand)AuthorAgeFilesLines
* MAINT: Use np.errstate context manager.Charles Harris2013-07-111-6/+5
* ENH: vectorize boolean comparisons of floatsJulian Taylor2013-07-081-1/+6
* Rename filled, filled_like to full, full_likeJohannes Schönberger2013-06-301-13/+13
* Update default dtype of filled function in doc stringJohannes Schönberger2013-06-061-1/+1
* Rename fill value parameter for consistency across numpy+Johannes Schönberger2013-06-061-9/+9
* Add examples to doc string of filled and filled_likeJohannes Schönberger2013-06-061-0/+25
* Add separate parameter description to filled, filled_like and onesJohannes Schönberger2013-06-061-6/+35
* Add tests for filled_like functionJohannes Schönberger2013-06-061-10/+0
* Fix doc stringJohannes Schönberger2013-06-061-3/+1
* Replace nans, nans_like, infs, infs_like with filled functionsJohannes Schönberger2013-06-061-93/+15
* Fix typo in doc stringJohannes Schönberger2013-06-061-4/+4
* Add short note in doc string about dtype for non-numbersJohannes Schönberger2013-06-061-0/+12
* Add more related functionsJohannes Schönberger2013-06-061-0/+5
* Add nans, infs, nans_like, infs_like convenience functionsJohannes Schönberger2013-06-061-1/+139
* ENH: implement may_share_memory in CJulian Taylor2013-05-281-1/+2
* Make sure comparison result is arrayJay Bourque2013-05-131-1/+1
* Fix array_equal and array_equiv issueJay Bourque2013-05-101-2/+2
* 2to3: Apply basestring fixer.Charles Harris2013-04-131-1/+2
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* 2to3: Apply `imports` fixer.Charles Harris2013-04-021-15/+20
* Merge pull request #3178 from charris/2to3-apply-import-fixernjsmith2013-04-021-10/+10
|\
| * 2to3: Use absolute imports.Charles Harris2013-03-281-10/+10
* | Merge pull request #273 from dlax/fix/rollCharles Harris2013-04-011-5/+9
|\ \ | |/ |/|
| * STY: drop some else clauses in rollDenis Laxalde2012-10-131-8/+6
| * FIX: handle empty arrays in rollDenis Laxalde2012-05-081-6/+9
| * FIX: roll raises a ValueError is axis > ndimDenis Laxalde2012-05-081-1/+4
* | 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-4/+4
* | 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
* | 2to3: Fix callable.Charles Harris2013-02-281-2/+3
* | Added 'subok' keyword documentation to zeros_like and ones_likedaveydave4002013-02-221-0/+8
* | remove a confusing docstring lineargriffing2013-01-111-4/+0
* | API: Change isfortran to f-contig and not c-contigSebastian Berg2012-10-211-2/+2
* | Add doc to {empty,zeros,ones}_like that tell in witch version their dtype and...Frederic2012-09-261-0/+4
* | DOC: merge wiki edits. Add percentile to statistics routines (ML suggestion).Ralf Gommers2012-07-071-4/+12
* | Remove maskna API from ndarray, and all (and only) the code supporting itNathaniel J. Smith2012-06-161-74/+22
* | Transition scheme for allowing PyArray_Diagonal to return a viewNathaniel J. Smith2012-05-161-3/+2
|/
* DOC: allclose: document better what happens when Infs or NaNs are present.Ralf Gommers2012-03-251-2/+5
* MAINT: explicitly check for NaNs in allclose(). Closes #1905.Ralf Gommers2012-03-251-17/+17
* PY24: Ignore invalid in allclose and isclose.Charles Harris2012-03-181-3/+17
* ENH: Made "isclose()" NA-aware, added release note and versionadded.Joe Kington2012-03-041-3/+6
* ENH: Allow "isclose()" to work with subclasses of ndarray (such as masked arr...Joe Kington2012-03-041-6/+11
* ENH: Added "isclose()".Joe Kington2012-03-041-1/+81
* DOC: merge wiki doc edits.Ralf Gommers2012-03-031-12/+12
* ENH: missingdata: Make numpy.all follow the NA && False == False ruleMark Wiebe2011-08-271-2/+2
* ENH: missingdata: Add maskna= and ownmaskna= parameters to np.asarray and fri...Mark Wiebe2011-08-271-8/+40
* ENH: missingdata: Add maskna= flag to np.identity constructorMark Wiebe2011-08-271-3/+5
* ENH: missingdata: Add the maskna= parameter to np.ones and np.ones_likeMark Wiebe2011-08-271-35/+88
* ENH: missingdata: Create count_reduce_items functionMark Wiebe2011-08-271-3/+4
* ENH: missingdata: Change default to create NA-mask when NAs are in listsMark Wiebe2011-08-271-3/+6
* ENH: missingdata: Fill in buffered NAMASK nditer, add maskna= to zeros, empty...Mark Wiebe2011-08-271-2/+4