diff options
author | Melissa Weber Mendonça <melissawm@gmail.com> | 2021-02-17 16:12:36 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 16:12:36 -0300 |
commit | dc35f0155a80e8ae1e3f146da9a717888a55f1c0 (patch) | |
tree | d596abf8b1565df85c8d12f95c38f2e45afd0e4b /numpy/core/fromnumeric.py | |
parent | 6f65e1fc25f265ff36bdbfb3aa482f65fd84a684 (diff) | |
parent | dd5fbac3ce8bc1128dc7db2503df694f3cf1b51c (diff) | |
download | numpy-dc35f0155a80e8ae1e3f146da9a717888a55f1c0.tar.gz |
Merge pull request #16588 from SabrinaSimao/np.transpode-documentation
DOC: unify the docs for np.transpose and ndarray.transpose
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 |