summaryrefslogtreecommitdiff
path: root/doc/source
Commit message (Collapse)AuthorAgeFilesLines
...
* | | 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]
* | MAINT: Grammar and style corrections to whatisnumpy.rst.Charles Harris2014-05-291-12/+12
| |
* | DOC: Fix typos, punctuation, and grammar.Yoni Ben-Meshulam2014-05-291-3/+3
| |
* | 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
| | |
* | | Changing EPD to Canopybrettrmurphy2014-05-151-3/+3
| |/ |/|
* | 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: add NEPs overview to documentation.Ralf Gommers2014-04-2116-5/+59
| |
* | DOC: fix examples in f2py documentation. They didn't appear at all in html.Ralf Gommers2014-04-211-95/+45
| | | | | | | | Also fix example in testing that Sphinx saw as section header.
* | 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.
* | DOC: Change pyrex to Cython in c-info.how-to-extend.rst.Charles Harris2014-03-141-1/+1
| |
* | Merge pull request #4487 from charris/move-swig-to-tools-directoryCharles Harris2014-03-131-1/+1
|\ \ | | | | | | Move swig to tools directory
| * | MAINT: Move doc/swig to tools/swig.Charles Harris2014-03-121-1/+1
| | | | | | | | | | | | | | | | | | | | | Also update MANIFEST.in and documentation to reflect the move. The discussion of this change is at #2384. Closes #2384. Closes #4374.
* | | 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.
* | Merge pull request #4303 from charris/fix-gh-588seberg2014-02-171-1/+1
|\ \ | | | | | | DOC: Typo, replace PyArrayDescr_Check by PyArray_DescrCheck.
| * | DOC: Typo, replace PyArrayDescr_Check by PyArray_DescrCheck.Charles Harris2014-02-161-1/+1
| | | | | | | | | | | | | | | | | | Found by trac user komnomnomnom. Closes #588.
* | | DOC: remove mktemp mention from f2py manpageJulian Taylor2014-02-161-1/+1
|/ /
* | 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.
* BUG: fix native-only long long checkJulian Taylor2014-01-041-2/+2
| | | | | | Caused all long longs to be required native only in memoryviews. NPY_SIZEOF_LONG_LONG never existed, replace documentation with existing NPY_SIZEOF_LONGLONG and code with a sizeof(npy_longlong).
* Merge pull request #4149 from argriffing/doc-matrix-rankCharles Harris2014-01-021-0/+1
|\ | | | | DOC: matrix_rank
| * DOC: matrix_rankalex2013-12-261-0/+1
| |
* | DOC: f2py: fix some typos etcPauli Virtanen2014-01-034-38/+38
| |
* | DOC: f2py: more Numeric -> numpy updatingPauli Virtanen2014-01-022-4/+4
| |
* | DOC: f2py: update numpy.distutils part a bitPauli Virtanen2014-01-022-45/+7
| |
* | DOC: f2py: minor fixupsPauli Virtanen2014-01-023-7/+6
| |
* | MAINT: remove unused filePauli Virtanen2014-01-021-180/+0
| |
* | DOC: f2py: Numeric -> numpyPauli Virtanen2014-01-026-30/+30
| |
* | DOC: split up f2py user guide + markup fixesPauli Virtanen2014-01-028-1724/+1726
| |
* | DOC: fix up f2py user guide formattingPauli Virtanen2014-01-021-181/+169
| |
* | DOC: move f2py documentation under doc/ and link its user guide with SphinxPauli Virtanen2014-01-0235-0/+2522
|/
* Fix the doc of PyArray_ArgMax and PyArray_ArgMinFrederic2013-12-171-2/+2
|
* Merge pull request #3974 from juliantaylor/fenv-improveCharles Harris2013-11-062-0/+43
|\ | | | | ENH: avoid expensive clears in fenv functions
| * ENH: avoid expensive clears in fenv functionsJulian Taylor2013-11-062-0/+43
| | | | | | | | | | | | | | | | | | | | Clearing is 50-100 times more expensive than checking on x86, so check if there is anything needs to be cleared first. This speeds up scalar operations by 10%-20%. Based on Arink Verma code in #3739. Implement the functions as new C-API functions npy_get_floatstatus and npy_clear_floatstatus in npy_math.
* | DOC: add 1.7.2 release notesJulian Taylor2013-11-011-0/+1
|/
* BUG: core: ensure __r*__ has precedence over __numpy_ufunc__Pauli Virtanen2013-10-191-0/+29
| | | | | | | | | | | | | Add a special case to the implementation of ndarray.__mul__ et al. that refuses to work on other objects that are not ndarray subclasses and implement both __numpy_ufunc__ and __r*__. This way, execution passes first to the custom __r*__ method, which makes it possible to have e.g. __mul__ and np.multiply do different things. Additionally, disable one __array_priority__ special case handling when also __numpy_ufunc__ is defined.
* DOC: Notes on backporting.Blake Griffith2013-10-102-1/+62
|
* DOC: fix signature of NpyIter_GetIterNext in capi docJulian Taylor2013-10-051-1/+1
|