mxnet.ndarray.NDArray.T¶
-
NDArray.
T
¶ Returns a copy of the array with axes transposed.
Equivalent to
mx.nd.transpose(self)
except that self is returned ifself.ndim < 2
.Unlike
numpy.ndarray.T
, this function returns a copy rather than a view of the array unlessself.ndim < 2
.Examples
>>> x = mx.nd.arange(0,6).reshape((2,3)) >>> x.asnumpy() array([[ 0., 1., 2.], [ 3., 4., 5.]], dtype=float32) >>> x.T.asnumpy() array([[ 0., 3.], [ 1., 4.], [ 2., 5.]], dtype=float32)