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.
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.
Input array.
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.
Reverse or permute the axes of an array; returns the modified array.
ndarray.transpose
Equivalent method
>>> 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))See :
... np.transpose(x).shape (5, 4, 3, 2)
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
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