diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-10-04 16:41:09 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 16:41:09 -0600 |
commit | c231c33acd5eae061b62ed8b1bc0dcc221231c42 (patch) | |
tree | c32fbb5f9e02fb1dc7f02f6c9ecedc57678153f6 /numpy/core/fromnumeric.py | |
parent | 5c3b6977f45b25e8d8354a005ec52855f7e9e6c9 (diff) | |
parent | a0748676e08da4835ff6eccab0f143b28fb6fb81 (diff) | |
download | numpy-c231c33acd5eae061b62ed8b1bc0dcc221231c42.tar.gz |
Merge pull request #20027 from BvB93/nanfunc
ENH: Add missing parameters to the `nan<x>` functions
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 29d215ea0..3242124ac 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -1144,6 +1144,8 @@ def argmax(a, axis=None, out=None, *, keepdims=np._NoValue): in the result as dimensions with size one. With this option, the result will broadcast correctly against the array. + .. versionadded:: 1.22.0 + Returns ------- index_array : ndarray of ints @@ -1238,6 +1240,8 @@ def argmin(a, axis=None, out=None, *, keepdims=np._NoValue): in the result as dimensions with size one. With this option, the result will broadcast correctly against the array. + .. versionadded:: 1.22.0 + Returns ------- index_array : ndarray of ints |