summaryrefslogtreecommitdiff
path: root/doc/source/reference
Commit message (Collapse)AuthorAgeFilesLines
...
* | DOC: document nested_iters (#10078)Matti Picus2017-12-151-0/+1
|/
* ENH: Add gcd and lcm ufuncsEric Wieser2017-12-122-0/+10
| | | | Fixes #8772
* return valuesmattip2017-12-061-2/+8
|
* document new API functionmattip2017-12-061-3/+13
|
* DOC: Add documentation for datetime_dataEric Wieser2017-11-271-0/+1
| | | | [ci-skip]
* DOC: Add documentation for datetime_as_stringEric Wieser2017-11-271-0/+6
| | | | [ci-skip]
* DOC:: Clarify the two ufunc signature types.Charles Harris2017-11-271-1/+3
| | | | | | The `ufunc.signature` attribute is the generalized ufunc signature, while the optional `signature` parameter in `ufunc.__call__` refers to the loop type. [ci skip].
* MAINT: Fix use of parenthesis. Charles Harris2017-11-271-1/+1
| | | [ci skip]
* DOC: Update ufunc documentation to mention generalized ufuncs.Marten van Kerkwijk2017-11-251-9/+22
| | | | | Also ensure that __array_ufunc__ is referenced in the output type determination.
* ENH: don't show boolean dtype, as it is impliedEric Wieser2017-11-133-3/+3
|
* MAINT: Improve wording of documentation.Charles Harris2017-11-111-1/+1
|
* DOC: reword PyArray_DiscardWritebackIfCopy descriptionmattip2017-11-111-3/+4
|
* DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with ↵Matti Picus2017-11-086-37/+88
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WRITEBACKIFCOPY (#9639) * ENH: add API to resolve UPDATEONCOPY outside dealloc, test and use * BUG: Fix usage of keyword "from" as argument name for "can_cast". Also removed inconsistency between the second argument name between documentation ("totype") and code ("to"). * UPDATEIFCOPY -> WRITEBACKIFCOPY, documentation * fixes for review * review2, fix new test * fix new test for using self.assert_deprecated * change deprecation logic as per review * new logic exposed places where PyArray_ResolveWritebackIfCopy not called * deprecate PyArray_XDECREF_ERR in favor of PyArray_DiscardWritebackIfCopy * code review changes * clean up merge cruft * fix from review * fixes from review * extend the release note
* Merge pull request #9953 from eric-wieser/add-unsizedCharles Harris2017-11-041-0/+6
|\ | | | | MAINT: Add a PyDataType_ISUNSIZED macro
| * MAINT: Add a PyDataType_ISUNSIZED macroEric Wieser2017-11-031-0/+6
| | | | | | | | This allows us to change how flexible types with no length are represented in future, to allow zero-size dtypes (#8970).
* | DOC: update documentation for dragon4Allan Haldane2017-11-041-0/+2
|/
* DOC: Refine SVD documentation (#9845)Toon Verstraelen2017-10-181-0/+2
|
* DOC: Some minor fixes regarding import_arrayMichael Seifert2017-10-131-3/+3
| | | | [skip ci]
* DOC: Add polyutils subpackage to reference documentation [skip ci]Michael Seifert2017-09-232-0/+5
|
* ENH: Show domain and window as kwargs in reprEric Wieser2017-08-101-24/+24
| | | | Also, update the docs with this new repr
* Merge pull request #9426 from eric-wieser/add-einsum_path-docRalf Gommers2017-07-161-0/+1
|\ | | | | DOC: Add a link to einsum_path
| * DOC: Add a link to einsum_pathEric Wieser2017-07-151-0/+1
| | | | | | | | [ci skip]
* | Merge pull request #9407 from rgommers/testingdocsseberg2017-07-131-1/+1
|\ \ | | | | | | DOC: add ``suppress_warnings`` to the testing routine listing.
| * | DOC: add ``suppress_warnings`` to the testing routine listing.Ralf Gommers2017-07-131-1/+1
| | |
* | | Merge pull request #9392 from jaimefrio/updateifcopy_docJulian Taylor2017-07-111-2/+1
|\ \ \ | |/ / |/| | DOC: UPDATEIFCOPY raises an error if not an array.
| * | DOC: UPDATEIFCOPY raises an error if not an array.Jaime Fernandez2017-07-091-2/+1
| | |
* | | Merge pull request #9389 from jaimefrio/newfromdescr_doc_linkJulian Taylor2017-07-111-1/+1
|\ \ \ | | | | | | | | DOC: Fix reference, PyArray_DescrNew -> PyArray_NewFromDescr
| * | | DOC: Fix reference, PyArray_DescrNew -> PyArray_NewFromDescrJaime Fernandez2017-07-081-1/+1
| |/ /
* | | DOC: document how to free memory from PyArray_IntpConverter.Jaime Fernandez2017-07-111-4/+4
|/ /
* | DOC: Document the internal workings of PY_ARRAY_UNIQUE_SYMBOLJaime Fernandez2017-07-061-0/+18
| |
* | DOC: Add isnat/positive ufunc to documentation [skip ci]Michael Seifert2017-06-143-1/+4
| |
* | DOC: BLD: fix lots of Sphinx warnings/errors.Ralf Gommers2017-06-101-1/+2
| |
* | Merge pull request #5580 from jakirkham/fix_masked_array_viewsCharles Harris2017-06-091-2/+2
|\ \ | | | | | | BUG, DEP: Fix masked arrays to properly edit views. ( #5558 )
| * | DOC: Correct docs for masked array view behavior.John Kirkham2017-01-171-2/+2
| | |
* | | DOC: Remove all references to bigndarray (#9205)Konrad Kapp2017-06-021-7/+6
| | | | | | | | | Fixes issue #9204 - bigndarray was removed long ago in 6fd31c330e6572963a03b71bcd479dbedd153ac8
* | | DOC: Fix some very minor spelling/grammar mistakes in docs (#9152)Konrad Kapp2017-05-211-3/+3
| | | | | | | | | It's all in the "Numpy C Code Explanations" page.
* | | DOC: Update ufunc documentation (#9141)Shitian Ni2017-05-191-3/+5
| | | | | | | | | | | | | | | | | | | | | * DOC: Update ufuncs.rst to mention the option of an axis tuple fixes issue gh-9131. ufuncs.rst now mentions that the axis may be assigned a tuple of int for reduce. Also fixed broken "{op}.reduce" link on the webpage in the same article.
* | | DOC: update documentation allowing tuple of one in reduce, etc.Marten van Kerkwijk2017-05-171-3/+6
| |/ |/|
* | Merge pull request #9026 from eric-wieser/ufunc_docstringsCharles Harris2017-05-091-0/+2
|\ \ | | | | | | ENH: Show full PEP 457 argument lists for ufuncs
| * | DOC: Refer to main ufunc docs for kwargsEric Wieser2017-05-081-0/+2
| | |
* | | ENH: Spelling fixesVille Skyttä2017-05-093-3/+3
|/ /
* | ENH: add np.divmod ufuncStephan Hoyer2017-05-072-0/+2
| |
* | Merge pull request #9024 from zengi/patch-1Charles Harris2017-05-051-1/+1
|\ \ | | | | | | Correction in default stop index value for negative stepping.
| * | Correction in default stop index value for negative stepping.zengi2017-04-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | On line 88 the default value for stop index 'j' in the basic slice syntax is i:j:k for negative values of k is given as -1 Line 88: and -1 for *k < 0* . If *k* is not given it defaults to 1. Note that Proposing that this should be changed to -n-1: Line 88: and *-n-1* for *k < 0* . If *k* is not given it defaults to 1. Note that The issue was discussed and was approved by a project member see the following link : https://github.com/numpy/numpy/issues/9010#issuecomment-298095768
* | | Merge pull request #9039 from eric-wieser/as-strided_docsCharles Harris2017-05-051-0/+1
|\ \ \ | | | | | | | | DOC: actually produce docs for as_strided
| * | | DOC: actually produce docs for as_stridedEric Wieser2017-05-031-0/+1
| | | | | | | | | | | | | | | | [ci skip]
* | | | ENH: Add isin, genereralizing in1d to ND arrays (#8423)B R S Recht2017-05-051-0/+1
|/ / / | | | | | | | | | | | | | | | This fixes gh-8331 Also update the docs for arraysetops to remove the outdated "1D" from the description, which was already incorrect for np.unique.
* | | Merge pull request #8967 from shoyer/positiveEric Wieser2017-05-012-2/+3
|\ \ \ | | | | | | | | ENH: add np.positive ufunc
| * | | ENH: add np.positive ufunc and use it for ndarray.__pos__Stephan Hoyer2017-04-302-2/+3
| |/ / | | | | | | | | | xref GH8932
* | | DOC: update docs for __array_ufunc__ = NoneStephan Hoyer2017-04-301-10/+6
|/ /