mindspore.ops.t

mindspore.ops.t(input)[source]

Transposes a 2-D Tensor. 1-D Tensor are returned as it is.

Parameters

input (Tensor) – The input Tensor.

Returns

Tensor, the transpose of input .

Raises

ValueError – If the dimension of input is larger than 2.

Supported Platforms:

Ascend GPU CPU

Examples

>>> x = Tensor([[1, 2, 3], [2, 3, 4]], mstype.float32)
>>> output = ops.t(x)
>>> print(output)
[[1. 2.]
 [2. 3.]
 [3. 4.]]