diff options
author | jnothman <jnothman@student.usyd.edu.au> | 2014-11-04 15:49:12 +1100 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-01-18 10:20:17 -0700 |
commit | 5c00d82b9fdb0cb0e137ba36549ce12ad3d0d047 (patch) | |
tree | ebd2ddd055cd754b0fb298529b83e5239b8d643d /numpy/core/numeric.py | |
parent | 8a81c08e777996b933fe4568ee5a6a0e01416faf (diff) | |
download | numpy-5c00d82b9fdb0cb0e137ba36549ce12ad3d0d047.tar.gz |
DOC : rollaxis returns a view of the input.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 430f7a715..0f3ee8a4d 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1410,7 +1410,7 @@ def rollaxis(a, axis, start=0): Returns ------- res : ndarray - Output array. + A view of `a` with its axes permuted. See Also -------- |