summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Update 1.11.2 release notes.Charles Harris2016-09-111-0/+1
| | | | [ci skip]
* Merge pull request #8028 from charris/update-1.11.2-notesRalf Gommers2016-09-081-6/+9
|\ | | | | DOC: Update 1.11.2 release notes.
| * DOC: Update 1.11.2 release notes.Charles Harris2016-09-071-6/+9
| | | | | | | | [ci skip]
* | DOC: change version references from x.y to x.y.zPierre de Buyl2016-09-074-5/+5
| |
* | DOC: change version references from x.y to x.y.zPierre de Buyl2016-09-071-1/+1
| |
* | DOC: fix page title for swigPierre de Buyl2016-09-061-1/+1
| |
* | change all non-code instances of Numpy to NumPyPierre de Buyl2016-09-0656-168/+168
|/ | | | | | | | | Instances remain for NumpyVersion and Numpy.rec.fromarrays that are references to code. Release notes were left unchanged. see issue #7986
* DOC: Update 1.11.2 release notes.Charles Harris2016-09-031-0/+1
| | | | [ci skip]
* DOC: Fixed three typos in the c-info.ufunc-tutorial [skip ci]Michael Seifert2016-09-031-3/+3
|
* DOC: Update 1.11.2 release notes.Charles Harris2016-09-031-4/+5
| | | | [ci skip]
* DOC: Add warning stacklevel increase to the release notesSebastian Berg2016-09-021-0/+13
|
* ENH: Use new context manager for testingSebastian Berg2016-09-021-2/+9
| | | | | | Making the outer context manager a suppress warnings gives good control to print warnings only once in release mode and suppress some specific warnings which cannot be easily avoided otherwise.
* ENH: Make warning testing context managers more specificSebastian Berg2016-09-021-0/+12
| | | | | | | This means that warnings of different origin then the one tested for behave normally. If the normal behaviour is to igonre them this might decrease specificity in rare cases. In most cases the specificity will be slightly higher.
* Merge pull request #7977 from charris/create-1.11.2-notesCharles Harris2016-08-292-0/+34
|\ | | | | DOC: Create 1.11.2 release notes.
| * DOC: Create 1.11.2 release notes.Charles Harris2016-08-262-0/+34
| | | | | | | | [ci skip]
* | DOC: Include docstring for cbrt, spacing and fabs in ufuncs-documentation ↵Michael Seifert2016-08-291-0/+4
| | | | | | | | [skip ci]
* | ENH,TST: Add new warning suppression/filtering contextSebastian Berg2016-08-281-0/+17
| | | | | | | | | | | | This context has a couple of advantages over the typical one, and can ensure that warnings are cleanly filtered without side effect for later tests.
* | DOC: add cbrt to math summary pageJulian Taylor2016-08-151-0/+1
|/ | | | [ci skip]
* ENH: added axis param for np.count_nonzerogfyoung2016-08-041-0/+3
| | | | Closes gh-391.
* DOC: #7881. Fix link to record arraysTom Bird2016-08-021-1/+1
|
* Merge pull request #7699 from nolta/preserve-lib-orderCharles Harris2016-07-281-0/+7
|\ | | | | BLD: preserve library order
| * BLD: preserve library orderMike Nolta2016-06-251-0/+7
| | | | | | | | | | | | Before, the list of libraries was resorted to match the order of library_dirs. Now, the opposite occurs: library_dirs is resorted to match the library order.
* | 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