summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #7866 from ssanderson/document-runtests-extra-argvCharles Harris2016-07-251-0/+7
|\ | | | | Document runtests extra argv
| * DOC: Use a shorter example.Scott Sanderson2016-07-251-1/+1
| |
| * DOC: Document extra args forwarding to nose.Scott Sanderson2016-07-231-0/+7
| | | | | | | | | | This is useful for things like passing ``--pdb`` to make nose drop into a pdb post-mortem on exception.
* | ENH: turn quicksort into introsortJulian Taylor2016-07-211-0/+6
|/ | | | | | Introsort is regular quicksort but changing to a heapsort when not enough progress is made. This retains the good quicksort performance while changing the worst case runtime from O(N^2) to O(N*log(N))
* DOC: add note of 64-bit wheels on WindowsMatthew Brett2016-06-291-5/+4
| | | | Say that we do provide 64-bit Windows wheels. Update link to mingwpy.
* DOC: update wheel building procedure for releaseMatthew Brett2016-06-291-169/+83
| | | | | Document the single repository wheel building system. Strip out the old Wine instructions.
* Merge pull request #7777 from charris/update-1.11.1-notesCharles Harris2016-06-251-0/+3
|\ | | | | DOC: Update Numpy 1.11.1 release notes.
| * DOC: Update Numpy 1.11.1 release notes.Charles Harris2016-06-251-0/+3
| | | | | | | | [ci skip]
* | Merge pull request #7347 from erensezener/generalized_rot90Charles Harris2016-06-221-0/+6
|\ \ | | | | | | ENH Generalized rot90
| * | ENH: generalize rot90 with axes kwarg, move to function_base.py, and add testsDenis Alevi2016-03-201-0/+6
| | |
* | | Merge pull request #7268 from endolith/geomspaceCharles Harris2016-06-212-0/+8
|\ \ \ | | | | | | | | ENH: add geomspace function
| * | | DOC: Add geomspace to function list, release notesendolith2016-06-212-0/+8
| | | |
* | | | ENH: Make assert_almost_equal & assert_array_almost_equal consistent.Charles Harris2016-06-191-1/+14
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes the check for scalars in assert_almost_equal so that abs(actual - desired) < 1.5 * 10**(-decimal) Note that the previous documentation claimed that the functions were equivalent to abs(actual - desired) < .5 * 10**(-decimal) but that was not how they behaved in practice. Due to the change in implementation, some very delicate tests may fail that did not fail before. No extra failures were noted in scipy. Closes #5200.
* | | DOC: Remove "ones_like" from ufuncs list (it is not)John Zwinck2016-06-141-1/+0
| | | | | | | | | | | | Mentioned here: http://stackoverflow.com/questions/37625478/why-is-ones-like-listed-as-a-ufunc
* | | MAINT: FutureWarning for changes to np.average subclass handlingAllan Haldane2016-06-141-0/+6
| | | | | | | | | | | | Fixes #7403
* | | DOC: Mention the changes of #6430 in the release notes.Erik M. Bray2016-06-131-0/+8
| | |
* | | ENH: Add `polyrootval` to numpy.polynomiale-q2016-06-122-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As one can easily encounter when working with high-order signal processing filters, converting a high-order polynomial from its roots to its polynomial coefficients can be quite lossy, leading to inaccuracies in the filter's properties. This PR adds a new function, `polyrootval` - based on `polyval` - that evaluates a polynomial given a list of its roots. The benefit of calculating it this way can be seen at scipy/scipy:6059. Some tests are included, as well.
* | | DOC: Corrections in Datetime Units-arrays.datetime.rstbadhrink2016-06-101-3/+3
| |/ |/| | | | | | | Changed/corrected Time span - relative and absolute - for second, millisecond and microsecond. There were slight differences and was noted duly in the issue. See #6711 (https://github.com/numpy/numpy/issues/6711)
* | ENH: Changing FFT cache to a bounded LRU cacheLion Krischer2016-06-061-0/+7
| | | | | | | | | | | | | | | | Replaces the simple dictionary caches for the twiddle factors of numpy.fft to bounded LRU (least recently used) caches. The caches can thus no longer grow without bounds. See #7686.
* | DOC: Mention bits attribute added to finfo in 1.12.0 release notes.Charles Harris2016-06-041-2/+7
| |
* | Merge pull request #7696 from matthew-brett/update-wheel-release-procedureCharles Harris2016-06-031-5/+94
|\ \ | | | | | | DOC: update wheel build / upload instructions
| * | DOC: write pypi as PyPI; more on warehouse uploadsMatthew Brett2016-06-031-10/+11
| | | | | | | | | | | | | | | | | | | | | Correct capitalization of PyPI. Add more on procedure for uploading via warehouse server rather than pypi server.
| * | DOC: update wheel build / upload instructionsMatthew Brett2016-05-311-2/+90
| | | | | | | | | | | | | | | Update the instructions for the numpy Windows and manylinux wheels builds, and uploading the wheels to pypi.
* | | DOC: fix broken genfromtxt examples in user guide. Closes gh-7662.Ralf Gommers2016-05-271-25/+25
|/ / | | | | | | [ci skip]
* | DOC: Update 1.11.1 release notes.Charles Harris2016-05-261-20/+20
| | | | | | | | [ci skip]
* | DOC: Create Numpy 1.11.1 release notes.Charles Harris2016-05-252-0/+29
| | | | | | | | [ci skip]
* | ENH: linear interpolation of complex values in lib.interpPeter Creasey2016-05-121-0/+5
| | | | | | | | | | | | | | lib.interp function now allows interpolation of complex fp with complex128 precision (i.e. equivalent to lib.interp on the real and imaginary parts). Tests are added for the non-periodic and periodic cases.
* | DOC: Clarify definition list format in HOWTOendolith2016-05-111-0/+2
| | | | | | | | | | Definition lists are marked up with indentation, not colons, and extra colons break the web formatting
* | DOC: Remove isreal and iscomplex from ufunc listEdward Richards2016-05-041-2/+0
| | | | | | | | | | | | | | I do not think that these two function are ufuncs since they do not have an optional [, out] argument. From the doc: - All ufuncs can also take output arguments.
* | PEP8 fixesKevin Deldycke2016-05-021-2/+2
| |
* | DOC: clarify purpose of Attributes sectionnevimov2016-04-281-1/+1
| | | | | | | | | | | | | | | | According to the official Python documentation, term "class variables" denotes attributes shared by all instances of the class. The current version of the Numpy/Scipy documentation guide uses the term to mean non-method attributes. This commit replaces the confusing term with a more appropriate one.
* | DOC: Removed an extra `:const:`Joseph Fox-Rabinovitz2016-04-071-1/+1
| |
* | Merge pull request #6660 from wackywendell/usepathCharles Harris2016-04-071-0/+6
|\ \ | | | | | | Added pathlib support for several functions
| * | ENH: Add support for pathlib.Path objects to save/load functionsWendell Smith2016-04-061-0/+6
| | |
* | | BUG: Add bytes to numpy.sctypes in Python 3.Antony Lee2016-04-071-0/+6
| | |
* | | DOC: rephrase writeup of memmap changesMatthew Brett2016-04-061-4/+8
|/ / | | | | | | Fix a little grammatical error and expand the text on mmap changes.
* | Merge pull request #7406 from lesteve/memmap-ufunc-return-ndarrayahaldane2016-04-041-0/+7
|\ \ | | | | | | ENH ufunc called on memmap return a ndarray
| * | FIX ufunc called on memmap return a ndarrayLoïc Estève2016-04-041-0/+7
| | | | | | | | | | | | | | | | | | | | | Special case for reduction functions (e.g. np.sum with axis=None) that return a numpy scalar. Keep original memmap subclasses behavior to be on the safe side.
* | | ENH: Allow rolling multiple axes at the same time.Antony Lee2016-04-021-0/+4
|/ / | | | | | | | | | | | | | | | | A quick test suggests that this implementation from @seberg, relying on slices rather than index arrays, is 1.5~3x faster than the previous (1D) roll (depending on the axis). Also switched the error message for invalid inputs to match the one of ufuncs, because the axis can actually also be negative.
* | Merge pull request #7421 from pwolfram/nancumsumprodStephan Hoyer2016-03-262-0/+7
|\ \ | | | | | | ENH: adds np.nancumsum and np.nancumprod
| * | ENH: adds np.nancumsum and np.nancumprodPhillip J. Wolfram2016-03-242-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | This PR adds an implementation of `nancumsum` and `nancumprod`. The actual function is a two-liner adapted from `nansum`. Its structure is adapted from PR: https://github.com/numpy/numpy/pull/5418/
* | | ENH: implement __complex__Eric Moore2016-03-221-0/+6
| | | | | | | | | | | | fixes gh-2491.
* | | DOC: ndarray typo fixMarshall Ward2016-03-221-1/+1
| | | | | | | | | | | | Space added to resolve misrendering of monospace (``) delimiters.
* | | BUG, MAINT: Use keyword args internally in fromnumeric.pygfyoung2016-03-201-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Internal method calls to array methods should be written to reflect the actual signature of the argument. Thus, keyword arguments for example should be written explicitly as keyword arguments. This inconsistency has caused libraries like pandas to adopt somewhat awkward function signatures for functions with name equivalents in numpy in which certain arguments had to be externalized for compatibility purposes but would preferably have been hidden in a kwargs argument since they weren't actually used in the implementation. Such externalization would only cause more confusion for the user.
* | | MAINT: np.full defaults to the filler's dtype.Antony Lee2016-03-201-0/+2
| | |
* | | DOC: Update 1.11.0-notes.Charles Harris2016-03-191-27/+33
| | | | | | | | | | | | | | | | | | | | | Expand the explanation of the future changes to mask behavior when assignments are made to views of masked_arrays. [skip ci]
* | | Merge pull request #7363 from seberg/masked-silence-2Charles Harris2016-03-191-2/+27
|\ \ \ | | | | | | | | ENH: Make no unshare mask future warnings less noisy
| * | | ENH: Make no unshare mask future warnings less noisySebastian Berg2016-03-011-2/+27
| | | | | | | | | | | | | | | | | | | | Incorporates Nathaniels suggestions for a longer explanation in the release notes.
* | | | Merge pull request #7198 from seberg/unlock_gil_gufuncsNathaniel J. Smith2016-03-171-0/+5
|\ \ \ \ | | | | | | | | | | ENH: Unlock the GIL for gufuncs
| * | | | ENH: Unlock the GIL for gufuncsSebastian Berg2016-03-171-0/+5
| | |/ / | |/| |