summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/source/reference/ufuncs.rst39
1 files changed, 39 insertions, 0 deletions
diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst
index 987a2ec15..0e7da347e 100644
--- a/doc/source/reference/ufuncs.rst
+++ b/doc/source/reference/ufuncs.rst
@@ -286,6 +286,44 @@ advanced usage and will not typically be used.
.. index::
pair: ufunc; keyword arguments
+*out*
+
+ .. versionadded:: 1.6
+
+ The first output can provided as either a positional or a keyword parameter.
+
+*casting*
+
+ .. versionadded:: 1.6
+
+ Provides a policy for what kind of casting is permitted. For compatibility
+ with previous versions of NumPy, this defaults to 'unsafe'. May be 'no',
+ 'equiv', 'safe', 'same_kind', or 'unsafe'. See :func:`can_cast` for
+ explanations of the parameter values.
+
+*order*
+
+ .. versionadded:: 1.6
+
+ Specifies the calculation iteration order/memory layout of the output array.
+ Defaults to 'K'. 'C' means the output should be C-contiguous, 'F' means
+ F-contiguous, 'A' means F-contiguous if the inputs are F-contiguous, C-contiguous
+ otherwise, and 'K' means to match the element ordering of the inputs
+ as closely as possible.
+
+*dtype*
+
+ .. versionadded:: 1.6
+
+ Overrides the dtype of the calculation and output arrays. Similar to *sig*.
+
+*subok*
+
+ .. versionadded:: 1.6
+
+ Defaults to true. If set to false, the output will always be a strict
+ array, not a subtype.
+
*sig*
Either a data-type, a tuple of data-types, or a special signature
@@ -310,6 +348,7 @@ advanced usage and will not typically be used.
in a loop.
+
Attributes
----------