summaryrefslogtreecommitdiff
path: root/doc/source
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #7977 from charris/create-1.11.2-notesCharles Harris2016-08-291-0/+1
|\ | | | | DOC: Create 1.11.2 release notes.
| * DOC: Create 1.11.2 release notes.Charles Harris2016-08-261-0/+1
| | | | | | | | [ci skip]
* | DOC: Include docstring for cbrt, spacing and fabs in ufuncs-documentation ↵Michael Seifert2016-08-291-0/+4
| | | | | | | | [skip ci]
* | DOC: add cbrt to math summary pageJulian Taylor2016-08-151-0/+1
|/ | | | [ci skip]
* DOC: #7881. Fix link to record arraysTom Bird2016-08-021-1/+1
|
* 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.
* DOC: Add geomspace to function list, release notesendolith2016-06-211-0/+1
|
* 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
* ENH: Add `polyrootval` to numpy.polynomiale-q2016-06-121-0/+1
| | | | | | | | | | | 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)
* DOC: fix broken genfromtxt examples in user guide. Closes gh-7662.Ralf Gommers2016-05-271-25/+25
| | | | [ci skip]
* DOC: Create Numpy 1.11.1 release notes.Charles Harris2016-05-251-0/+1
| | | | [ci skip]
* DOC: Remove isreal and iscomplex from ufunc listEdward Richards2016-05-041-2/+0
| | | | | | | I do not think that these two function are ufuncs since they do not have an optional [, out] argument. From the doc: - All ufuncs can also take output arguments.
* DOC: Removed an extra `:const:`Joseph Fox-Rabinovitz2016-04-071-1/+1
|
* Merge pull request #7421 from pwolfram/nancumsumprodStephan Hoyer2016-03-261-0/+2
|\ | | | | ENH: adds np.nancumsum and np.nancumprod
| * ENH: adds np.nancumsum and np.nancumprodPhillip J. Wolfram2016-03-241-0/+2
| | | | | | | | | | | | | | | | This PR adds an implementation of `nancumsum` and `nancumprod`. The actual function is a two-liner adapted from `nansum`. Its structure is adapted from PR: https://github.com/numpy/numpy/pull/5418/
* | DOC: ndarray typo fixMarshall Ward2016-03-221-1/+1
|/ | | | Space added to resolve misrendering of monospace (``) delimiters.
* MAINT: Wrapped some docstrings and fixed typoJoseph Fox-Rabinovitz2016-03-142-41/+46
|
* DOC: Updates to documentation from perusing it in detail.Joseph Fox-Rabinovitz2016-03-142-3/+3
| | | | [ci skip]
* Merge pull request #7346 from erensezener/generalized_flipCharles Harris2016-03-121-0/+1
|\ | | | | Generalized flip
| * ENH: Add generalized flip function and its testsEren Sezener2016-03-121-0/+1
| |
* | Merge pull request #7410 from shoyer/nanprod-docNathaniel J. Smith2016-03-121-0/+1
|\ \ | | | | | | DOC: add nanprod to the list of math routines
| * | DOC: add nanprod to the list of math routinesStephan Hoyer2016-03-111-0/+1
| | | | | | | | | This was otherwise undocumented, so the nanprod.rst page wasn't being generated.
* | | DOC: Fix more typos in docs and comments.Dongjoon Hyun2016-02-251-1/+1
| |/ |/|
* | Merge pull request #7295 from rehassachdeva/update_dev_docNathaniel J. Smith2016-02-231-0/+15
|\ \ | | | | | | DOC: understanding code and getting started section to dev doc
| * | DOC: Added understanding code and getting started section to ↵rehassachdeva2016-02-221-0/+15
| | | | | | | | | | | | | | | | | | | | | development_environment.rst Updated understanding code section in dev doc wrapped lines, corrected grammar.
* | | DOC: corrected grammatical error in quickstart docrehassachdeva2016-02-231-1/+1
|/ /
* | Missing some characters in link.Mad Physicist2016-02-221-2/+2
| | | | | | Docs looked funny at that point.
* | DOC: dev: stop recommending keeping local master updated with upstream/masterPauli Virtanen2016-02-211-94/+69
| | | | | | | | | | | | Use the simpler `git fetch; ... upstream/master` approach instead of updating the local master branch. Keeping the local master branch in sync with upstream is usually not necessary.
* | MAINT: Fix typos in docsDongjoon Hyun2016-01-258-8/+8
| |
* | REL: Update master branch after 1.12.x branch has been made.Charles Harris2016-01-191-0/+1
| | | | | | | | | | | | | | * Drop testing of Python 2.6, 3.2, and 3.3 * Create 1.12.0-notes.rst and add to source/documentation. * Update pavement.py to use 1.10.x as LOG_START * Update version numpy in setup.py
* | Merge pull request #6453 from shoyer/naive-datetime64Charles Harris2016-01-161-25/+37
|\ \ | | | | | | API: Make datetime64 timezone naive
| * | API: Make datetime64 timezone naiveStephan Hoyer2016-01-151-25/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes GH3290 With apologies to mwiebe, this rips out most of the time zone parsing from the datetime64 type. I think we mostly sorted out the API design in discussions last year, but I'll be posting this to the mailing list shortly to get feedback. Old behavior: # string parsing and printing defaults to your local timezone :( >>> np.datetime64('2000-01-01T00') numpy.datetime64('2000-01-01T00:00-0800','h') New behavior: # datetime64 is parsed and printed as timezone naive >>> np.datetime64('2000-01-01T00') numpy.datetime64('2000-01-01T00','h') # you can still supply a timezone, but you get a deprecation warning >>> np.datetime64('2000-01-01T00Z') DeprecationWarning: parsing timezone aware datetimes is deprecated; this will raise an error in the future numpy.datetime64('2000-01-01T00','h')
* | | DOC/BUG: textual improvements in install docs, and fix a typo in setup.pyRalf Gommers2016-01-161-4/+3
| | | | | | | | | | | | Address comments of @charris on gh-6895.
* | | DOC: some tweaks to the install and build info in the user guide.Ralf Gommers2016-01-162-7/+2
| | |
* | | DOC: add NumpyVersion to the docs, and mention it in version.pyRalf Gommers2016-01-161-0/+7
| | |
* | | 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-162-6/+7
|/ / | | | | | | Also remove all mentions of setupegg.py from the documentation.
* | DOC: Clean up/fix several references to the "future" 1.10 releaseNathaniel J. Smith2016-01-141-2/+2
| | | | | | | | Fixes gh-7010
* | ENH: moveaxis functionStephan Hoyer2016-01-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes GH2039 This function provides a much more intuitive interface than `np.rollaxis`, which has a confusing behavior with the position of the `start` argument: http://stackoverflow.com/questions/29891583/reason-why-numpy-rollaxis-is-so-confusing It was independently suggested several times over the years after discussions on the mailing list and GitHub (GH2039), but never made it into a pull request: https://mail.scipy.org/pipermail/numpy-discussion/2010-September/052882.html My version adds support for a sequence of axis arguments. I find this behavior to be very useful. It is often more intuitive than supplying a list of arguments to `transpose` and also nicely generalizes NumPy's existing axis manipulation routines, e.g., def transpose(a, order=None): if order is None: order = reversed(range(a.ndim)) return moveaxes(a, order, range(a.ndim)) def swapaxes(a, axis1, axis2): return moveaxes(a, [axis1, axis2], [axis2, axis1]) def rollaxis(a, axis, start=0): if axis < start: start -= 1 return moveaxes(a, axis, start)
* | DOC: Sync 1.10.3 and 1.10.4 release notes, update reference doc.Charles Harris2016-01-061-0/+2
| |
* | DOC: add note not to run tests from repo root in devguide. Closes gh-6907.Ralf Gommers2015-12-311-0/+3
| | | | | | | | [ci skip]
* | DOC: fix broken link in user guide. Closes gh-6906.Ralf Gommers2015-12-311-2/+2
| | | | | | | | [ci skip]
* | Fix carriage return inside commented python codeVincent Legoll2015-12-261-2/+2
| | | | | | This looks more conventionnal
* | Merge pull request #6600 from mgeier/doc-ndarray-subclassesCharles Harris2015-12-181-6/+6
|\ \ | | | | | | DOC: fix method signatures in "array subclasses"
| * | DOC: fix method signatures in "array subclasses"Matthias Geier2015-12-111-6/+6
| | | | | | | | | | | | | | | | | | * Change ".. function::" -> ".. method::" * Remove "self" argument * Change "self" to "obj" in __array_finalize__
* | | STY: Break some long lines in numpy-for-matlab-users.rst.Charles Harris2015-12-171-34/+81
| | |
* | | DOC: change uses of `rank` for `dimension`Matthew Brett2015-12-161-25/+27
|/ / | | | | | | | | | | | | We used to use ``rank`` to mean the number of axes in an array, but no more. Change these uses of rank to refer to dimensions. Closes gh-6839
* | Merge pull request #6789 from njsmith/governance-title-tweakseberg2015-12-081-1/+1
|\ \ | | | | | | [doc] Fix title of governance section in docs