summaryrefslogtreecommitdiff
path: root/doc/source
Commit message (Collapse)AuthorAgeFilesLines
* DOC: correct possible list lengths for `extobj` in ufunc callsJosh Wilson2020-03-221-5/+5
| | | | | | | | | | | | | | | | | | | According to the docs, the list can be of lengths 1, 2, or 3, but only length 3 appears to work: ``` >>> import numpy as np >>> np.sin(1, extobj=[16, 1, lambda: None]) 0.8414709848078965 >>> np.sin(1, extobj=[16, 1]) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: UFUNC_PYVALS must be a length 3 list. >>> np.sin(1, extobj=[16]) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: UFUNC_PYVALS must be a length 3 list. ```
* BLD: Add requirements.txt file for building docs (#15778)Ross Barnowski2020-03-192-11/+30
| | | * BLD: Added doc_requirements.txt and improve documentation around building docs
* Merge pull request #15771 from anirudh2290/fix_dev_docSebastian Berg2020-03-171-1/+1
|\ | | | | DOC: Fix runtests example in developer docs
| * DOC: Fix runtests example in developer docsAnirudh Subramanian2020-03-181-1/+1
| |
* | Merge pull request #15768 from charris/update-after-1.18.2-releaseRalf Gommers2020-03-172-0/+40
|\ \ | | | | | | REL: Update master after 1.18.2 release.
| * | REL: Update master after 1.18.2 release.Charles Harris2020-03-172-0/+40
| |/
* | BUG: add missing c_distributions.pxd, enables cython use of random C-API ↵Matti Picus2020-03-161-2/+11
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (gh-15463) xref gh-14778 As pointed out in the comment by @jamesthomasgriffin, we did not include a pxd file to expose the distribution functions documented in the random c-api. This PR adds a c_distributions.pxd file that exposes them. Squashed commits: * BUG: add missing c_distributions.pxd to enable cython use of random C-API * ENH, TST: add npyrandom library like npymath, test cython use of it * BUG: actually prefix f-string with f * MAINT: fixes from review, add _bit_generato_bit_generator.pxd * STY: fixes from review * BLD: don't use nprandom library for mtrand legacy build * TST: WindowsPath cannot be used in subprocess's list2cmdline * MAINT, API: move _bit_generator to bit_generator * DOC: add release note about moving bit_generator * DOC, MAINT: fixes from review * MAINT: redo dtype determination from review
* DOC: Refactor `np.polynomial` docs using `automodule` (#15662)Ross Barnowski2020-03-128-555/+43
| | | * DOC: Refactor polynomial docs using automodule.
* DOC: Change license date 2019 -> 2020 (gh-15735)Himanshu Garg2020-03-101-1/+1
| | | Update Year 2019 -> 2020
* DOC: Fix coremath.rst to fix refguide_check (#15718)Pierre de Buyl2020-03-061-1/+6
| | | | | * DOC: fix coremath.rst to fix refguide_check Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* Merge pull request #15717 from pdebuyl/fix_refguide_datetimeMatti Picus2020-03-061-51/+25
|\ | | | | DOC: update datetime reference to pass refguide
| * Update doc/source/reference/arrays.datetime.rstPierre de Buyl2020-03-061-2/+1
| | | | | | Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
| * DOC: move deprecation info to apart paragraph.Pierre de Buyl2020-03-061-4/+8
| |
| * reinstate example with offsetPierre de Buyl2020-03-061-0/+2
| |
| * DOC: remove outdated example and sectionPierre de Buyl2020-03-061-51/+20
| | | | | | | | | | | | Remove example with timezone Remove section on changes in NumPy 1.11
* | Merge pull request #15534 from seberg/deprecate-abstract-scalar-typesMatti Picus2020-03-061-2/+14
|\ \ | | | | | | DEP: Do not allow "abstract" dtype conversion/creation
| * | Fixup: Do not deprecate generic python typesSebastian Berg2020-02-071-2/+14
| | | | | | | | | | | | | | | Add a comment that we can think about only allowing it for `dtype=...` though...
* | | DOC: Change list to tuple in example description. (gh-15705)Sebastian Berg2020-03-051-2/+2
| |/ |/| | | | | | | | | | | | | | | Changed a description in the quickstart example to use tuple instead of the deprecated list for indexing arrays. The change is located at the Indexing with Arrays of Indices section. Co-authored-by: Eric Wieser <wieser.eric@gmail.com> Co-authored-by: Matti Picus <matti.picus@gmail.com> Closes gh-15699
* | DOC: fix SVD tutorial to pass refguide (#15710)Matti Picus2020-03-051-1/+6
| | | | | | | | | | * DOC: fix printing and add traceback for SVD tutorial Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* | DOC: Fix quickstart doc to pass refguide (#15703)Matti Picus2020-03-051-38/+54
| | | | | | | | | | * DOC: Fix quickstart doc to pass refguide Fix printing of arrays. Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
* | DOC: Fix indexing docs to pass refguide (#15694)Pierre de Buyl2020-03-041-21/+12
| | | | | | | | * DOC: Add missing imports, np prefix, fix printing, fix examples Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
* | DOC: Add missing imports, definitions and dummy file (#15616)Pierre de Buyl2020-03-031-2/+7
| | | | | | | | | | * DOC: fix imports and defs to pass refguide checks Add empty file foo.c at runtime to run distutils config.
* | DOC: Make extension module wording more clearmatt2020-02-291-8/+8
| |
* | Merge pull request #15295 from melissawm/linalg-tutorialMatti Picus2020-02-289-1/+596
|\ \ | | | | | | DOC: Added tutorial about linear algebra on multidimensional arrays
| * | Fixing linksmelissawm2020-02-281-10/+11
| | |
| * | Fixing formatting of source.melissawm2020-02-271-46/+72
| | |
| * | Added intersphinx mappings for skimage and imageio; added proper links to ↵melissawm2020-02-272-21/+10
| | | | | | | | | | | | external docs.
| * | Fixed missing backtick.melissawm2020-02-211-1/+1
| | |
| * | Added plot scripts and reworded to respond to PR comments.melissawm2020-02-217-74/+212
| | |
| * | Incorporated @bonn0062's suggestions.Melissa Weber Mendonça2020-01-241-15/+16
| | |
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>
| * | Update doc/source/user/tutorial-svd.rstMelissa Weber Mendonça2020-01-241-1/+1
| | | | | | | | | Co-Authored-By: Anne Bonner <35413198+bonn0062@users.noreply.github.com>