matrix.transpose(*axes)¶Returns a view of the array with axes transposed.
For a 1-D array, this has no effect. (To change between column androw vectors, first cast the 1-D array into a matrix object.)For a 2-D array, this is the usual matrix transpose.For an n-D array, if axes are given, their order indicates how theaxes are permuted (see Examples). If axes are not provided anda.shape=(i[0],i[1],...i[n-2],i[n-1]), thena.transpose().shape=(i[n-1],i[n-2],...i[1],i[0]).
| Parameters: |
|
|---|---|
| Returns: |
|
See also
ndarray.TExamples
>>>a=np.array([[1,2],[3,4]])>>>aarray([[1, 2], [3, 4]])>>>a.transpose()array([[1, 3], [2, 4]])>>>a.transpose((1,0))array([[1, 3], [2, 4]])>>>a.transpose(1,0)array([[1, 3], [2, 4]])