|
Transpose
Transpose[list] transposes the first two levels in list.
Transpose[list,  , , ... ] transposes list so that the k level in list is the  level in the result.
Example: Transpose[ a,b , c,d ]  .
Transpose gives the usual transpose of a matrix.
Acting on a tensor Transpose gives the tensor .
Transpose[list,  , , ... ] gives the tensor .
So long as the lengths of the lists at particular levels are the same, the specifications do not necessarily have to be distinct.
Example: Transpose[Array[a, 3, 3 ], 1, 1 ]  .
Transpose works on SparseArray objects.
See Section 1.8.3, Section 1.8.12, Section 2.4.3, Section 3.7.2 and Section 3.7.7.
See also: Flatten, Thread, Tr.
Related package: LinearAlgebra`MatrixManipulation`.
New in Version 1.
Further Examples
|