summaryrefslogtreecommitdiff
path: root/doc/source/user
Commit message (Collapse)AuthorAgeFilesLines
...
* DOC: Clarify C-API for generalized ufuncs.mattip2018-05-281-0/+1
|
* Merge pull request #10991 from eric-wieser/genfromtxt-docsCharles Harris2018-05-161-36/+36
|\ | | | | DOC: Update genfromtxt docs to use StringIO and u-strings
| * DOC: Update genfromtxt docs to use StringIO and u-stringsEric Wieser2018-04-271-36/+36
| | | | | | | | | | | | We could also instead use b-strings everywhere, but encouraging unicode seems like the right thing to do. Fixes #8498
* | Merge pull request #10980 from mattip/masterCharles Harris2018-04-271-2/+2
|\ \ | |/ |/| DOC: link to governance, convert external link to internal
| * DOC: link to governance, convert external link to internalmattip2018-04-271-2/+2
| |
* | DOC: advise against use of matrix.Marten van Kerkwijk2018-04-252-69/+39
|/
* DOC: clear up warnings, fix matplotlib plotmattip2018-04-171-1/+1
|
* BUG: fix crash in numpy.genfromtxt(..., names=True, comments=None) (#10822)Raunak Shah2018-04-161-1/+4
| | | | Fixes gh-10780
* update kwargs where neededmattip2018-04-111-2/+2
|
* DOC: note that NDEBUG should be set when OPT should increase optimizationJulian Taylor2018-04-011-0/+2
|
* DOC: Tell matlab users about np.blockEric Wieser2018-01-311-1/+1
|
* DOC: Document A@B in Matlab/NumPy summary tableGerrit Holl2018-01-251-1/+1
| | | Document matrix multiplication syntax `A@B` in the summary table comparing Matlab and Python syntaxes.
* DOC: Update macro names.Charles Harris2017-12-071-4/+4
| | | [ci skip]
* make example backward compatablemattip2017-12-071-1/+10
|
* ENH: don't show boolean dtype, as it is impliedEric Wieser2017-11-131-2/+2
|
* DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with ↵Matti Picus2017-11-081-9/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* DOC: Some minor fixes regarding import_arrayMichael Seifert2017-10-131-2/+2
| | | | [skip ci]
* DOC: update other MATLAB ode recommendationxoviat2017-10-021-2/+2
|
* DOC: update scipy.integrate recommendationxoviat2017-10-021-1/+1
| | | Closes scipy/scipy#7965.
* Fixing typo "Porland" -> "Portland" in `building` doc.Danny Hermes2017-09-191-2/+2
|
* DOC: Simplify terminologyNathaniel J. Smith2017-09-081-16/+12
| | | | | | | | For some reason this file insisted on using multiple redundant terms for array dimensionality, and in particular liked the word "rank", which is confusing and very rarely used in my experience. This commit drops the word rank and removes a number of parenthetical "X (which is to say Y)" phrasings.
* DOC: clarify wording in tutorialNathaniel J. Smith2017-09-071-5/+5
| | | | | | | In gh-9664, a user got confused by this wording, because they thought it was talking about the length of a vector as a distance in cartesian space versus the length of a vector as the number of elements it contains.
* Replace xrange by range in quickstart docsMatheus Portela2017-07-281-3/+3
|
* DOC: add @ operator in array vs. matrix comparison doc [skip ci]Michael Seifert2017-06-231-8/+12
| | | | Also unify spelling of "element-wise" in this doc page.
* DOC: BLD: fix lots of Sphinx warnings/errors.Ralf Gommers2017-06-102-48/+48
|
* DOC: Fix incorrect function signature in UFunc documentation.k_kapp@yahoo.com2017-05-211-1/+1
| | | | See issue #9148
* ENH: Spelling fixesVille Skyttä2017-05-091-1/+1
|
* DOC: stop refering to 'S' dtype as stringJulian Taylor2017-04-221-5/+5
| | | | | | | | The S dtype is zero terminated bytes which happen to match what Python 2 called strings. As this is not the case in Python 3 we should stop naming it wrong in our documentation. [ci skip]
* DOC: Fix incorrect call to set_printoptionsEric Wieser2017-04-111-1/+1
| | | Fixes #2752
* DOC: Unwrap long signature linesMichael Seifert2017-03-283-9/+20
| | | | [skip ci]
* DOC: Replace deprecated (since 1.6) references in documentationMichael Seifert2017-03-272-6/+6
| | | | and fixed two broken links because they started with "&". [skip ci]
* DOC: Fixed wrong directiveMichael Seifert2017-03-271-1/+1
| | | | [skip ci]
* DOC: Function definitions may not extend over several linesMichael Seifert2017-03-272-9/+4
|
* DOC: Corrected links for several __array_*__ functionsMichael Seifert2017-03-272-10/+10
|
* DOC: Fix "PyObject *" links in narrative documentationMichael Seifert2017-03-262-3/+3
|
* DOC: Fix typosJakub Wilk2017-03-177-18/+18
|
* DOC: fix typo in 'Stacking together different arrays'Kirill Balunov2017-02-071-11/+16
| | | | | | The example with `newaxis` now looks rather silly. I left it because it is the only place in this tutorial with an example how to use `newaxis`.
* DOC: Fix Python versionsAlexandr Shadchin2016-12-091-1/+1
|
* DOC: Changed shape assignment example to reshape. Elaborated modifying shapepetetanru2016-11-111-12/+23
|
* 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]
* change all non-code instances of Numpy to NumPyPierre de Buyl2016-09-068-46/+46
| | | | | | | | | Instances remain for NumpyVersion and Numpy.rec.fromarrays that are references to code. Release notes were left unchanged. see issue #7986
* DOC: Fixed three typos in the c-info.ufunc-tutorial [skip ci]Michael Seifert2016-09-031-3/+3
|
* DOC: #7881. Fix link to record arraysTom Bird2016-08-021-1/+1
|
* DOC: fix broken genfromtxt examples in user guide. Closes gh-7662.Ralf Gommers2016-05-271-25/+25
| | | | [ci skip]
* DOC: corrected grammatical error in quickstart docrehassachdeva2016-02-231-1/+1
|
* MAINT: Fix typos in docsDongjoon Hyun2016-01-252-2/+2
|
* DOC: some tweaks to the install and build info in the user guide.Ralf Gommers2016-01-162-7/+2
|
* DOC: add Cython to list of dependencies in INSTALL.txt. Closes gh-6682.Ralf Gommers2016-01-161-0/+6
|
* BUG: fix TravisCI test issues when using setuptools unconditionally.Ralf Gommers2016-01-161-3/+3
| | | | Also remove all mentions of setupegg.py from the documentation.