summaryrefslogtreecommitdiff
path: root/doc/source/reference
Commit message (Collapse)AuthorAgeFilesLines
...
* | DOC: improve record/structured array nomenclature & guideAllan Haldane2015-01-228-49/+50
| | | | | | | | | | | | | | | | | | | | | | 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.
* | DOC: link to the npy-format NEP in numpy.npyio docs. Closes gh-4523.Ralf Gommers2015-01-021-2/+5
| | | | | | | | [ci skip]
* | DOC: Added ma.clump_masked to doc; removed `extras` in examplesYuxiang Wang2014-12-281-0/+2
| | | | | | | | | | 1. Added `ma.clump_masked` and `ma.clump_unmasked` into the rst file; 2. Removed the `.extras` in the examples due to the namespace change
* | DOC: fix typo in array flag docs.Eric Moore2014-12-191-1/+1
| |
* | Merge pull request #5287 from chatcannon/reconcile-c-api-with-docsJulian Taylor2014-12-101-1/+4
|\ \ | | | | | | | | | Reconcile C API with docs
| * | DOC: Update the docs for the C API to reflect the change in return type of ↵Chris Kerr2014-11-171-1/+4
| |/ | | | | | | PyArray_ITEMSIZE
* | DOC: NpyIter chapter: move table to bottomLars Buitinck2014-11-201-45/+45
| | | | | | | | ... so that the example is now the first thing seen after the (short) intro.
* | DOC: fix example in NpyIter docs that didn't compileLars Buitinck2014-11-191-1/+2
| |
* | DOC: iterator: don't bother users with NumPy development detailsLars Buitinck2014-11-191-2/+0
|/
* Merge pull request #5077 from jaimefrio/gufuncs_core_dim_no_broadcastCharles Harris2014-10-272-24/+58
|\ | | | | WIP: gufunc core dimensions should not broadcast
| * DOC: Stricter checks for gufunc signaturesjaimefrio2014-10-202-24/+58
| | | | | | | | | | | | Documented the the new behavior in c-api.generalized-ufuncs.rst. Added PyUFunc_FromFuncAndDataAndSignature to c-api.ufunc.rst.
* | Merge pull request #5120 from larsmans/install-docsCharles Harris2014-09-252-10/+3
|\ \ | | | | | | DOC: update installation docs
| * | DOC/MAINT: Python 2.6 or 3.2 requiredLars Buitinck2014-09-252-10/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | Installation docs still stated Python 2.4 is supported, while not mentioning 3.x at all. Also corrected the statement that distutils is in python-dev on Debian, while it's actually in the main package. Several parts of the dev docs and some comments also referenced now-irrelevant 2.5 bugs/limitations.
* | | DOC: document NPY_BEGIN_THREADS_THRESHOLDEDjaimefrio2014-09-251-0/+6
|/ /
* | DOC: Update PyArray_SearchSorted docs in c-api.array.rstjaimefrio2014-09-241-11/+20
|/
* Merge pull request #5062 from charris/update-numpy_ufunc-docJulian Taylor2014-09-131-1/+1
|\ | | | | DOC: Correct versionadded for __numpy_ufunc__ documentation.
| * DOC: Correct versionadded for __numpy_ufunc__ documentation.Charles Harris2014-09-101-1/+1
| | | | | | | | Make it 1.10.
* | DOC: remove 'count_reduce_items' from the 'Counting' section.Warren Weckesser2014-08-111-1/+0
| |
* | Merge pull request #4905 from juliantaylor/doc-updateCharles Harris2014-07-274-12/+6
|\ \ | | | | | | documentation updates
| * | DOC: NPY_ITEM_LISTPICKLE -> NPY_LIST_PICKLEKirill Smelkov2014-07-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | There is no NPY_ITEM_LISTPICKLE - it was NPY_LIST_PICKLE from the beginning - from c3551579 (Expand usage of hasobject to be a flag-like entity keeping track of how the data-type should be used.) The documentation in the same rst file even uses the correct identifier later, so it was just a typo/thinko.
| * | DOC: remove obsolete NA documentation pageJulian Taylor2014-07-271-11/+0
| | |
| * | DOC: add some missing ma functions to referenceJulian Taylor2014-07-271-0/+3
| | | | | | | | | | | | closes gh-4898
| * | DOC: add ascontiguousarray and asarray_chkfinite to appropriate sectionJulian Taylor2014-07-271-0/+2
| |/ | | | | | | | | added to "Changing kind of array" with the other as* functions Closes gh-4890
* | DOC: fix a typo and use TeX for plot labelsendolith2014-07-151-3/+3
| |
* | Merge pull request #4671 from charris/prepare-1.10-develCharles Harris2014-07-061-9/+8
|\ \ | | | | | | MAINT: start 1.10-devel.
| * | MAINT: Change default inplace, ufunc(...,out=x) casting to same_kind.Charles Harris2014-05-061-9/+8
| | | | | | | | | | | | | | | | | | There has been a warning of this change since numpy 1.7. numpy 1.10 is a good time to do it. The nanvar function needed a fix after the change, and the tests and documentation are updated.
* | | Merge pull request #4801 from larsmans/c-fixesJulian Taylor2014-06-301-2/+2
|\ \ \ | | | | | | | | MAINT: const correctness and minor fixes to C code
| * | | MAINT: const correctness and minor fixes to C codeLars Buitinck2014-06-101-2/+2
| | |/ | |/|
* | | DOC: add full/full_likeJulian Taylor2014-06-141-0/+2
| | | | | | | | | | | | | | | closes gh-4805 [ci skip]
* | | DOC: fix a couple mistakes in the indexing documentationJulian Taylor2014-06-111-5/+5
| | | | | | | | | | | | closes gh-618
* | | DOC: fix signature of PyArray_NewShape in C-API docsJulian Taylor2014-06-111-3/+4
|/ / | | | | | | closes gh-4579
* | DOC: add some highlights to release notes and reorganizeJulian Taylor2014-06-081-1/+1
| | | | | | | | | | also minor general documentation fixes [ci skip]
* | Merge pull request #4076 from seberg/advanced-indexing-docCharles Harris2014-05-291-107/+279
|\ \ | | | | | | DOC: Rework the advanced indexing documentation.
| * | DOC: Rework the advanced indexing documentation.Sebastian Berg2014-05-291-107/+279
| | | | | | | | | | | | | | | | | | Mostly makes the advanced indexing doc much more example based, and prominently mentions the np.ix_ function. Some subtleties (some of which are new) are also mentioned.
* | | DOC: tweak gufunc API documentation, remove broken link. Closes gh-4726.Ralf Gommers2014-05-241-15/+11
| |/ |/|
* | MAINT: add a few nonnull attributes to array creation functionsJulian Taylor2014-04-241-1/+1
| | | | | | | | | | also fix wrong capi documentation of PyArray_NewFromDescr stating it accepts NULL dtype while it does not.
* | DOC: remove obsolete oldnumeric/numarray sections from reference guide.Ralf Gommers2014-04-212-3/+1
| | | | | | | | | | Also fix a duplicate entry for numpy.testing due to incorrect header underlining.
* | updated for None-npnewaxis alias commentjess0102014-04-171-2/+2
| |
* | arrays.indexing.rstjess0102014-04-151-2/+2
| |
* | DOC: Document assert_raises_regex in numpy reference.Charles Harris2014-03-261-0/+1
| |
* | DOC: suggest definition of unique symbol in .hHans Meine2014-03-161-1/+5
| | | | | | | | I find it much more convenient to define the PY_ARRAY_UNIQUE_SYMBOL in a header file #included by all files of the extension (than to repeat its definition in each and every file).
* | "(byte-)string" in PyArrayInterface.typekind docsHans Meine2014-03-151-2/+2
| |
* | doc fixes to 'array-protocol type strings'Hans Meine2014-03-151-4/+8
| | | | | | | | The item size is not always used (and not always means exact bytes), and 'O' was not in the table.
* | BUG: Delay npyiter size check when size may changeSebastian Berg2014-03-121-5/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | When a multi index is tracked and RemoveAxis can be called, the size of the iterator may still change. This was causing failures for example for the SVD, because the gufunc machinery requires a temporarily larger iterator for output allocation. Thanks to Jaime (jaime.frio@gmail.com) for noting that this is plausible since the size check can be delayed pretty ok up until GetIterNext (or similar functions). Closes gh-4442
* | DOC: dtype's compare requires aligned, not swapped arraysjaimefrio2014-03-041-4/+4
| |
* | DOC fix incorrect variable name in examplejnothman2014-03-041-1/+1
| | | | | | Undefined `dataaddr` -> `dataptrarray`
* | BUG: Fix promote_types, can_cast, as astype issuesJay Bourque2014-02-251-2/+6
| | | | | | | | | | | | - promote_types does not return correct string size for integer and string arguments. Fix so that integer and string types are promoted to string type that is long enough to hold integer type safely cast to string. - can_cast incorrectly returns True for certain integer and string types. Fix so that can_cast only returns True if string type is long enough to hold integer type safely cast to string. - calling astype to convert integer to string should fail if string type is not long enough to hold integer converted to string and casting argument is set to "safe".
* | Update c-api.array.rstMarc-Alexandre Côté2014-02-171-0/+12
| | | | | | Add a note explaining the ``out`` parameter of some functions.
* | DOC: Typo, replace PyArrayDescr_Check by PyArray_DescrCheck.Charles Harris2014-02-161-1/+1
| | | | | | | | | | | | Found by trac user komnomnomnom. Closes #588.
* | ENH: add tobytes and stop using tostring in documentationJulian Taylor2014-02-114-2/+4
|/ | | | | | | 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.