diff options
author | Nicolás Della Penna <nikete@gmail.com> | 2016-01-08 16:02:42 +1100 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-01-09 10:16:07 -0700 |
commit | a8b10bb18c1810efa3b63891e28250d931525c5f (patch) | |
tree | 6213afbc558d6c25c242ecdbd9169f2612dd8398 /numpy/matrixlib/defmatrix.py | |
parent | 1d500ecaed7bbb162c6b591d0c0b7a5f10109678 (diff) | |
download | numpy-a8b10bb18c1810efa3b63891e28250d931525c5f.tar.gz |
DOC: Update defmatrix.argmax docstring.
[ci skip]
Diffstat (limited to 'numpy/matrixlib/defmatrix.py')
-rw-r--r-- | numpy/matrixlib/defmatrix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/matrixlib/defmatrix.py b/numpy/matrixlib/defmatrix.py index 134f4d203..22855772a 100644 --- a/numpy/matrixlib/defmatrix.py +++ b/numpy/matrixlib/defmatrix.py @@ -783,7 +783,7 @@ class matrix(N.ndarray): def argmax(self, axis=None, out=None): """ - Indices of the maximum values along an axis. + Index of the maximum value along an axis, if multiple returns the first one Parameters ---------- |