diff options
author | Jay Bourque <jay.bourque@continuum.io> | 2012-12-07 14:57:05 -0600 |
---|---|---|
committer | Jay Bourque <jay.bourque@continuum.io> | 2013-08-16 16:39:30 -0500 |
commit | f63eb175026577eec90a64719dcfd3a51962717e (patch) | |
tree | d81c77b06d76cd65e808696fbc926f425c532baf /doc | |
parent | 5b7cda079f3a5ce59eb1688af0297eba45d375ea (diff) | |
download | numpy-f63eb175026577eec90a64719dcfd3a51962717e.tar.gz |
Add documentation for new 'at' ufunc method
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/reference/ufuncs.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst index 2154bca37..df301d0cf 100644 --- a/doc/source/reference/ufuncs.rst +++ b/doc/source/reference/ufuncs.rst @@ -417,6 +417,11 @@ an integer (or Boolean) data-type and smaller than the size of the :class:`int_` data type, it will be internally upcast to the :class:`int_` (or :class:`uint`) data-type. +Ufuncs also have a fifth method that allows in place operations to be +performed using fancy indexing. No buffering is used, so the fancy index +can list an item more than once and the operation will be performed on the +result of the previous operation for that item. + .. index:: pair: ufunc; methods @@ -427,6 +432,7 @@ an integer (or Boolean) data-type and smaller than the size of the ufunc.accumulate ufunc.reduceat ufunc.outer + ufunc.at .. warning:: |