tf.matrix_transpose(a, name='matrix_transpose')
See the guide: Math > Matrix Math Functions
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]
a
: A Tensor
with rank >= 2
.name
: A name for the operation (optional).A transposed batch matrix Tensor
.
ValueError
: If a
is determined statically to have rank < 2
.Defined in tensorflow/python/ops/array_ops.py
.
© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/matrix_transpose