tf.matrix_transpose(a, name='matrix_transpose')
Transposes last two dimensions of tensor a
.
For example:
# Matrix with no batch dimension. # 'x' is [[1 2 3] # [4 5 6]] tf.matrix_transpose(x) ==> [[1 4] [2 5] [3 6]] # Matrix with two batch dimensions. # x.shape is [1, 2, 3, 4] # tf.matrix_transpose(x) is shape [1, 2, 4, 3]
Args:
-
a
: ATensor
withrank >= 2
. -
name
: A name for the operation (optional).
Returns:
A transposed batch matrix Tensor
.
Raises:
-
ValueError
: Ifa
is determined statically to haverank < 2
.
Please login to continue.