summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8231 from charris/integer-to-neg-integer-powerCharles Harris2016-11-051-7/+21
|\ | | | | ENH: Refactor numpy ** operators for numpy scalar integer powers
| * DOC: Note change to scalar integer powers in 1.12.0 release notes.Charles Harris2016-11-011-7/+21
| | | | | | | | [ci skip]
* | Merge pull request #8190 from charris/add-fpower-ufuncCharles Harris2016-11-051-0/+9
|\ \ | | | | | | ENH: Add a float_power function with at least float64 precision.
| * | DOC: Mention the fpower function in the 1.12.0 release notes.Charles Harris2016-11-021-0/+9
| | | | | | | | | | | | [ci skip]
* | | DOC: Fix code example in c-info.python-as-glue.rst.Charles Harris2016-11-041-16/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Corrections to #8023. - Fix index types to ssize_t. - Clean up C code style. Closes #7701. [ci skip]
* | | DOC: Fixups for quickstart.rst.Charles Harris2016-11-041-34/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Corrections to #8001. - Correct markup for code sections. - Correct link to structured arrays. Closes #7881. [ci skip]
* | | ENH: Deprecation warnings for `/` integer division when running python -3saurabh2016-11-011-0/+14
| | | | | | | | | | | | | | | | | | When python is invoked with switch -3, it emits waring "classic int division" for strict integer divisions. The same behavior is now implemented to numpy with this fix
* | | MAINT, DOC: Update some scipy.stats references.wrwrwr2016-10-281-3/+2
| | | | | | | | | | | | Closes #5813.
* | | DOC: Add SciPy inventory for intersphinx.wrwrwr2016-10-281-0/+1
| |/ |/|
* | DOC: change development instructions from SSH to HTTPS access.Ralf Gommers2016-10-241-5/+37
|/ | | | | | | | | This is easier to get going, and is the recommended access method by GitHub itself: https://help.github.com/articles/which-remote-url-should-i-use/ Also add instructions for pulling from upstream including PRs by default.
* Merge pull request #7922 from eric-wieser/np-ma-convolveahaldane2016-10-201-0/+7
|\ | | | | ENH: Add ma.convolve and ma.correlate for #6458
| * DOC: correct ma.convolve docstrings, and add the feature to the release notesEric Wieser2016-10-191-0/+7
| |
* | Merge pull request #8127 from charris/integer-to-negative-powerCharles Harris2016-10-201-7/+12
|\ \ | |/ |/| BUG: integers to a negative integer powers should error.
| * ENH: Power ufunc raises error for integer to negative integer powers.Charles Harris2016-10-201-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | This is a change in behaviour. Previously * zero to negative integer powers returned least integral value. * 1, -1 to negative integer powers returned correct values * all remaining integers returned zero when raised to negative integer powers. All of these cases now raise a ``ValueError``. It was felt that a simple rule was the best way to go rather than have special exceptions for the units. If you need negative powers, use an inexact type.
* | ENH: add signature argument to vectorize for vectorizing like generalized ↵Stephan Hoyer2016-10-172-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ufuncs (#8054) * ENH: add signature argument to vectorize for generalized ufuncs Example usage (from the docstring): Vectorized convolution: >>> convolve = np.vectorize(np.convolve, signature='(n),(m)->(k)') >>> convolve(np.eye(4), [1, 2, 1]) array([[ 1., 2., 1., 0., 0., 0.], [ 0., 1., 2., 1., 0., 0.], [ 0., 0., 1., 2., 1., 0.], [ 0., 0., 0., 1., 2., 1.]]) * Use str.format rather than % * Fix spelling typo * BUG: fix np.vectorize for size 0 inputs * DOC: add vectorize to 1.12.0 release notes * [ci-skip] Remove outdated comment
* | DOC: Further fixes for PyArray_{Max, Min, Ptp} documentation.Charles Harris2016-10-171-5/+9
| | | | | | | | [ci skip]
* | DOC: Small c api doc fix for PyArray_Max.Frederic Bastien2016-10-171-1/+2
| | | | | | | | [ci skip]
* | DOC: Add matplotlib inventory for intersphinx.wrwrwr2016-10-081-1/+4
|/ | | | | This makes it possible to directly use matplotlib references such as :func:`matplotlib.pyplot.imshow`.
* ENH: Allows contraction order optimization in einsum function.Daniel Smith2016-09-261-0/+12
|
* Merge pull request #7980 from juliantaylor/avx-runtimeJulian Taylor2016-09-251-0/+4
|\ | | | | ENH: Add ability to runtime select ufunc loops, add AVX2 integer loops
| * DOC: add release note entry for AVX2 integer loopsJulian Taylor2016-09-241-0/+4
| |
* | Merge pull request #6054 from ahaldane/warnviewCharles Harris2016-09-241-0/+27
|\ \ | | | | | | WIP: MAINT: Add deprecation warning to views of multi-field indexes
| * | MAINT: Add deprecation warning to multi-field views/assignmentAllan Haldane2016-09-241-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Behavior of multi-field indexes will change in 1.13: Multi-field indexes will return a view (not a copy) and assignment between structures with non-identical fieldnames occurs "by position" (not "by fieldname"): >>> a = zeros(10, dtype=[('x', 'i8'), ('y', 'i8'), ('z', 'i8')]) >>> a[['x', 'z']].view('i4') # Deprecation warning for multifield view >>> b = ones(10, dtype=[('y', 'i4'), ('x', 'f4')]) >>> a[:] = b # Deprecation warning for multifield assignment
* | | Update somethingaboutorange URL to nose.readthedocs.ionaveenarun2016-09-211-1/+1
|/ /
* | 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))