diff options
author | Mary <sleeplessinseattle.dev@gmail.com> | 2021-02-17 19:48:22 -0800 |
---|---|---|
committer | Mary <sleeplessinseattle.dev@gmail.com> | 2021-02-17 19:48:22 -0800 |
commit | c902caf7c66bf0657ce8ae0987f72adbaadebd22 (patch) | |
tree | c2b888a8428d5458429d5b9a540cfb427904dda5 /numpy/core/fromnumeric.py | |
parent | dca0d1c928665464b137419f0f530d5a6aac8ebd (diff) | |
parent | 0eb9f54e5e466c8d7a76ae116712b368d045c7e0 (diff) | |
download | numpy-c902caf7c66bf0657ce8ae0987f72adbaadebd22.tar.gz |
Merge branch 'master' of https://github.com/numpy/numpy into iss17845p3a
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 658b1aca5..bb736d1a0 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -606,6 +606,8 @@ def transpose(a, axes=None): For an array a with two axes, transpose(a) gives the matrix transpose. + Refer to `numpy.ndarray.transpose` for full documentation. + Parameters ---------- a : array_like @@ -625,6 +627,7 @@ def transpose(a, axes=None): See Also -------- + ndarray.transpose : Equivalent method moveaxis argsort |