summaryrefslogtreecommitdiff
path: root/doc/source/reference/arrays.ndarray.rst
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Fix typos in docsDongjoon Hyun2016-01-251-1/+1
|
* Fix carriage return inside commented python codeVincent Legoll2015-12-261-2/+2
| | | This looks more conventionnal
* DOC: Remove a reference to __array_priority__.Charles Harris2015-07-011-1/+0
| | | | Also correct its documented default value.
* DOC: Fix list markup in source/reference/arrays.ndarray.rst.Charles Harris2015-07-011-7/+8
| | | | List needs to be preceded by blank line.
* DOC: Remove references to removed setasflat ndarray method.Charles Harris2015-07-011-1/+0
|
* DOC: Document '@' and matmul.Charles Harris2015-06-041-3/+17
| | | | | Document the matmul function and add '@' to the operator section of the reference manual.
* DOC: improve record/structured array nomenclature & guideAllan Haldane2015-01-221-1/+1
| | | | | | | | | | | This update adds a section better describing record arrays in the user guide (numpy/doc/structured_arrays.py). It also corrects nomenclature, such that "structured array" refers to ndarrays with structured dtype, "record array" refers to modified ndarrays as created by np.rec.array, and "recarray" refers to ndarrays viewed as np.recarray. See the note at the end of the structured array user guide.
* ENH: add tobytes and stop using tostring in documentationJulian Taylor2014-02-111-0/+1
| | | | | | | tostring returns bytes which are not equal to string, so provide a tobytes function alias. tostring does not emit a deprecation warning yet so rdepends do not need to check two names to support older versions of numpy without warnings.
* ENH: add quickselect algorithm and expose it via partitionJulian Taylor2013-08-121-9/+11
| | | | | | | | | | | | | | | | | | | | | | | | A partition sorts the kth element into its sorted order and moves all smaller elements before the kth element and all equal or greater elements behind it. The ordering of all elements in the partitions is undefined. It is implemented via the introselection algorithm which has worst case linear complexity compared to a full sort that has linearithmic complexity. The introselect algorithm uses a quickselect with median of three pivot and falls back to a quickselect with median of median of five pivot if no sufficient progress is made. The pivots used during the search for the wanted kth element can optionally be stored and reused for further partitionings of the array. This is used by the python interface if an array of kth is provided to the partitions function. This improves the performance of median and which need to select two elements if the size of the array is even. A percentile function interpolating between values also profits from this. String selection is implemented in terms of quicksort which has the same properties as a selection for now.
* DOC: Document NPY_RELAXED_STRIDES_CHECKING changesSebastian Berg2013-04-111-3/+41
| | | | | | This includes documentation in the release notes, as well as the reference guide and smaller corrections. Thanks to Nathaniel for major rewriting this.
* ENH: core: Change PyArray_CopyAnyInto and PyArray_MoveAnyInto to use the new ↵Mark Wiebe2011-01-171-0/+1
| | | | | | | | iterator I also found that the tricky case of CopyAnyInto wasn't being triggered by the test suite, so added a new function ndarray.setasflat, which calls CopyAnyInto.
* updated documentation from pydoc website (thanks to everyone who contributed!)Jarrod Millman2010-02-171-36/+29
|
* second set of checkins from doc editorJarrod Millman2009-11-131-3/+38
|
* Merge from doc wikiPauli Virtanen2009-06-191-16/+21
|
* docs: strip trailing whitespace from RST filesPauli Virtanen2009-03-211-10/+10
|
* numpy.ma.core:pierregm2009-01-131-0/+5
| | | | | | | | | | | * introduced baseclass, sharedmask and hardmask as readonly properties of MaskedArray * docstrings update numpy.ma.extras: * docstring updates docs/reference * introduced maskedarray, maskedarray.baseclass, maskedarray.generic
* Moved numpy-docs under doc/ in the main Numpy trunk.Pauli Virtanen2008-11-231-0/+529