summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
Commit message (Collapse)AuthorAgeFilesLines
...
* ENH: core: Rename forcecopy= to copy= in ndarray.astypeMark Wiebe2011-06-011-5/+6
| | | | | This makes it match the parameter in the array constructor with the same meaning.
* ENH: core: Generalize ndarray.astype to take new standard keyword argumentsMark Wiebe2011-05-311-2/+26
| | | | | These include order=, casting=, subok=. Also added a forcecopy= parameter to allow skipping of the copy when possible.
* DOC: Document the new keyword arguments for ufuncsMark Wiebe2011-04-221-2/+9
|
* DOC: Improve the documentation about type promotionMark Wiebe2011-04-221-6/+50
|
* DOC: correct signature and description of ndarray.getfield.Ralf Gommers2011-03-291-35/+20
|
* DOC: Slight improvements to the Python nditer exposureMark Wiebe2011-03-171-19/+66
|
* API: Rename 'niter' to 'nop' in the nditerMark Wiebe2011-03-171-1/+1
| | | | | | This name was chosen partially based on the previous multi-iter, which stored an array of iterators, so 'niter' made sense. In the new nditer, it doesn't, and 'nop' for number of operands seems better.
* DOC: Fill in more of the nditer docsMark Wiebe2011-03-161-29/+100
|
* DOC: document nditer and its methods. Some blanks left to fill in.Ralf Gommers2011-03-161-0/+188
|
* ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, ↵Mark Wiebe2011-03-151-1/+5
| | | | | | | np.zeros_like, and np.ones_like This way, the sub-type can be avoided if necessary. This helps mitigate, but doesn't fix, ticket #1753, by allowing "b = np.empty_like(a, subok=False)".
* API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-141-13/+13
|
* DOC: Add info about iterator, new functions, and C API additions to release ↵Mark Wiebe2011-03-131-2/+2
| | | | notes
* DOC: Revert part of previous commit, moving umath docs did not work.rgommers2011-03-071-0/+247
| | | | | If the ldexp/frexp docs belong in ufunc_docsrtings.py, they need an entry in core/code_generators/generate_umath.py. See #1759.
* DOC: add a few more wiki edits, and move umath docs to correct place.rgommers2011-03-071-247/+0
|
* DOC: merge wiki edit for einsum docstring.rgommers2011-03-031-46/+47
|
* DOC: commit some more fixes from the doc wiki.rgommers2011-03-031-1/+44
|
* DOC: merge wiki edits for numpy.core.rgommers2011-03-021-39/+71
|
* DOC: merge more doc wiki edits.rgommers2011-03-021-2/+12
|
* ENH: core: Allow user to pass in output array for dot()Luis Pedro Coelho2011-02-121-1/+9
| | | | | | | | | This avoids the memory allocation. It is strict in checking that the types are correct, but since it is intended as an optimisation, it should only be used when the user knows what they are doing. The out parameter is added both to the BLAS and non-BLAS versions of dot(). Tests are included.
* STY: index_tricks: Improve comments and documentation stringsMark Wiebe2011-02-101-12/+16
|
* ENH: index_tricks: Implement unravel_index and ravel_coords functions in CMark Wiebe2011-02-101-0/+94
|
* DOC: Note version minlength was added to bincount.Charles Harris2011-02-041-0/+1
|
* ENH: einsum: Add alternative einsum parameter methodMark Wiebe2011-02-011-0/+30
| | | | | | | | | | | | This makes the following equivalent: einsum('ii', a) einsum(a, [0,0]) einsum('ii->i', a) einsum(a, [0,0], [0]) einsum('...i,...i->...', a, b) einsum(a, [Ellipsis,0], b, [Ellipsis,0], [Ellipsis])
* ENH: einsum: Disable broadcasting by default, allow spaces in subscripts stringMark Wiebe2011-02-011-9/+12
|
* Merge branch 'new_iterator' - new iterator, ufunc update, restore 1.5 ABIMark Wiebe2011-01-281-3/+444
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New Iterator - Read doc/neps/new-iterator-ufunc.rst. UFunc Update - Change all ufunc functions to use the new iterator. This replaces the inline buffering with iterator buffering, except for the reductions and generalized ufunc which use updateifcopy at the moment. Also adds out= and order= parameters to all ufuncs. Restore 1.5 ABI - This was done by moving the new type numbers to the end of the type enumeration, and replacing all type promotion code with a table-based approach. The ArrFuncs was restored by putting the new type cast functions into the cast dictionary, originally designed just for custom types. Conflicts: numpy/core/src/multiarray/ctors.c numpy/core/tests/test_regression.py
| * ENH: core: Add dtype= and order= parameters to zeros_like, ones_like, and ↵Mark Wiebe2011-01-281-0/+52
| | | | | | | | empty_like
| * WRN: iter: Fix half-float warnings, other small tweaksMark Wiebe2011-01-271-3/+3
| |
| * ENH: ufunc: Add new iterator version of generalized ufuncsMark Wiebe2011-01-271-1/+1
| |
| * ENH: core: Make NumPy trunk ABI-compatible with 1.5Mark Wiebe2011-01-271-1/+12
| |
| * DOC: core: Document the new einsum functionMark Wiebe2011-01-241-0/+145
| |
| * ENH: iter: Switch the iterator to use PyArray_ResultTypeMark Wiebe2011-01-181-2/+2
| |
| * ENH: core: Add functions PyArray_CanCastArrayTo and PyArray_ResultTypeMark Wiebe2011-01-181-3/+99
| | | | | | | | They have also been exposed to Python.
| * ENH: core: Add PyArray_MinScalarType and expose it to PythonMark Wiebe2011-01-181-0/+37
| |
| * ENH: core: Start converting ufunc to new iterator, add PyArray_PromoteTypesMark Wiebe2011-01-181-0/+40
| |
| * ENH: core: Change PyArray_CopyAnyInto and PyArray_MoveAnyInto to use the new ↵Mark Wiebe2011-01-171-0/+31
| | | | | | | | | | | | | | | | 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.
| * ENH: core: Switch nonzero to use the iterator as an example, add ↵Mark Wiebe2011-01-161-0/+29
| | | | | | | | count_nonzero function
* | ENH: Add minlength keyword to bincount. Patch from ticket #1595.David Warde-Farley2011-01-101-3/+8
|/
* DOC: Made problems with arange floating-point steps more clearly spelled out.Mark Wiebe2010-11-201-1/+6
|
* BUG: core: Enabled keyword argument for 'order' parameter where it was ↵Mark Wiebe2010-10-271-2/+3
| | | | missing, and tweaked some docs (#1581)
* BUG: DOC: fix invalid vdot documentationPauli Virtanen2010-10-141-14/+9
|
* DOC: wiki merge, matrlixlib and some ndarray methods.rgommers2010-07-311-15/+17
|
* DOC: wiki merge, add itemset method doc.rgommers2010-07-311-13/+59
|
* BUG: core: make set_string_function(None) to restore the functions to what ↵Pauli Virtanen2010-07-181-47/+1
| | | | they are on import (#1130)
* ENH: Remove order keyword from ndarray.resize. This is pretty muchCharles Harris2010-04-251-18/+2
| | | | Scott Sinclair's patch from ticket #840.
* updated documentation from pydoc website (thanks to everyone who contributed!)Jarrod Millman2010-02-171-0/+6
|
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-5/+5
|
* 3K: add_newdocs: use absolute importPauli Virtanen2009-12-061-1/+1
|
* Fix documentation of array.Charles Harris2009-11-281-1/+1
|
* Fix misformatted see also sectionPauli Virtanen2009-11-141-6/+3
|
* second set of checkins from doc editorJarrod Millman2009-11-131-67/+577
|