numpy 1.22.4 Pypi GitHub Homepage
Other Docs
NotesParametersReturnsBackRef
transpose(a, axes=None)

For an array a with two axes, transpose(a) gives the matrix transpose.

Refer to :None:None:`numpy.ndarray.transpose` for full documentation.

Notes

Use :None:None:`transpose(a, argsort(axes))` to invert the transposition of tensors when using the :None:None:`axes` keyword argument.

Transposing a 1-D array returns an unchanged view of the original array.

Parameters

a : array_like

Input array.

axes : tuple or list of ints, optional

If specified, it must be a tuple or list which contains a permutation of [0,1,..,N-1] where N is the number of axes of a. The i'th axis of the returned array will correspond to the axis numbered axes[i] of the input. If not specified, defaults to range(a.ndim)[::-1] , which reverses the order of the axes.

Returns

p : ndarray

a with its axes permuted. A view is returned whenever possible.

Reverse or permute the axes of an array; returns the modified array.

See Also

argsort
moveaxis
ndarray.transpose

Equivalent method

Examples

>>> x = np.arange(4).reshape((2,2))
... x array([[0, 1], [2, 3]])
>>> np.transpose(x)
array([[0, 2],
       [1, 3]])
>>> x = np.ones((1, 2, 3))
... np.transpose(x, (1, 0, 2)).shape (2, 1, 3)
>>> x = np.ones((2, 3, 4, 5))
... np.transpose(x).shape (5, 4, 3, 2)
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

dask.array.numpy_compat.moveaxis numpy.ma.core._arraymethod.<locals>.wrapped_method dask.array.einsumfuncs.einsum numpy.moveaxis numpy.ma.core.transpose numpy.matrixlib.defmatrix.matrix.T dask.array.routines.transpose dask.array.routines.nonzero pandas.core.frame.DataFrame.transpose scipy.spatial._qhull.Delaunay

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /numpy/core/fromnumeric.py#601
type: <class 'function'>
Commit: