diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-06-16 07:01:53 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-16 07:01:53 -0600 |
commit | 9b450e73e74fb4325598e40051655af6fc7038da (patch) | |
tree | 27549da3afce3f700edcebbb2b6a178e1d754d59 | |
parent | 7a8500868ec9efa1c1e452fab49e363c098c59dc (diff) | |
parent | e7143e78fc8c66fd09887ed10ed8b40d1d54d4a1 (diff) | |
download | numpy-9b450e73e74fb4325598e40051655af6fc7038da.tar.gz |
Merge pull request #9253 from MSeifert04/isnat_doc
DOC: Add isnat/positive ufunc to documentation.
-rw-r--r-- | doc/source/reference/routines.logic.rst | 1 | ||||
-rw-r--r-- | doc/source/reference/routines.math.rst | 1 | ||||
-rw-r--r-- | doc/source/reference/ufuncs.rst | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/doc/source/reference/routines.logic.rst b/doc/source/reference/routines.logic.rst index 88edde855..7fa0cd1de 100644 --- a/doc/source/reference/routines.logic.rst +++ b/doc/source/reference/routines.logic.rst @@ -19,6 +19,7 @@ Array contents isfinite isinf isnan + isnat isneginf isposinf diff --git a/doc/source/reference/routines.math.rst b/doc/source/reference/routines.math.rst index a2fb06958..4c2f2800a 100644 --- a/doc/source/reference/routines.math.rst +++ b/doc/source/reference/routines.math.rst @@ -108,6 +108,7 @@ Arithmetic operations add reciprocal + positive negative multiply divide diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst index de6065dcc..e28496cf6 100644 --- a/doc/source/reference/ufuncs.rst +++ b/doc/source/reference/ufuncs.rst @@ -431,7 +431,7 @@ keyword, and an *out* keyword, and the arrays must all have dimension >= 1. The *axis* keyword specifies the axis of the array over which the reduction will take place (with negative values counting backwards). Generally, it is an integer, though for :meth:`ufunc.reduce`, it can also be a tuple of `int` to -reduce over several axes at once, or `None`, to reduce over all axes. +reduce over several axes at once, or `None`, to reduce over all axes. The *dtype* keyword allows you to manage a very common problem that arises when naively using :meth:`ufunc.reduce`. Sometimes you may have an array of a certain data type and wish to add up all of its @@ -665,6 +665,7 @@ single operation. isfinite isinf isnan + isnat fabs signbit copysign |