summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/functions.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/oldnumeric/functions.py')
-rw-r--r--numpy/oldnumeric/functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/oldnumeric/functions.py b/numpy/oldnumeric/functions.py
index 475802c88..e295c11bd 100644
--- a/numpy/oldnumeric/functions.py
+++ b/numpy/oldnumeric/functions.py
@@ -40,7 +40,7 @@ def argmax(x, axis=-1):
return N.argmax(x, axis)
def argmin(x, axis=-1):
- return N.argmax(x, axis)
+ return N.argmin(x, axis)
def compress(condition, m, axis=-1):
return N.compress(condition, m, axis)