Wolfram: Transpose
Transpose
Transpose-
Transpose[list]Transpose[list, m <-> n]Transpose[list,{n1, n2, etc}]
- Transpose a matrix.
- Transposes levels m and n. (default
1and2) - when given a list {n1, n2, etc}, transposes so that the k(th) level in list is the n(th) level in the result. (the list is a permutation of 1 to k, where k is
ArrayDepth)
Transpose[ {{a, b, c}, {1, 2, 3}} ] (* {{a, 1}, {b, 2}, {c, 3}} *) (* same as *) Transpose[ {{a, b, c}, {1, 2, 3}}, {2, 1} ] (* {{a, 1}, {b, 2}, {c, 3}} *) (* same as *) Transpose[ {{a, b, c}, {1, 2, 3}}, 1 <-> 2 ] (* {{a, 1}, {b, 2}, {c, 3}} *)
Wolfram. List Operations, and Loop, Iteration, Recursion
- Wolfram: List Operations
- Wolfram: List. Create (Table)
- Wolfram: Create Flat List (Range)
- Wolfram: List. Get Parts
- Wolfram: List. Add Element
- Wolfram: List. Delete Element
- Wolfram: List. Change Element
- Wolfram: List. Check Exist
- Wolfram: List. Join, Union, Intersection, Difference
- Wolfram: List. Min, Max
- Wolfram: List. Filter
- Wolfram: List. Sort Reverse Ordering
- Wolfram: Flatten
- Wolfram: Riffle (Add at Every Nth)
- Wolfram: RotateLeft
- Wolfram: Padding
- Wolfram: List. Partition, Reshape, Split, Gather
- Wolfram: Transpose
- Wolfram: List. Same Items Counts, Tally, Group
- Wolfram: List. Combinatorics
- Wolfram: Iteration
- Wolfram: Map Function to List
- Wolfram: Scan (foreach)
- Wolfram: Recursion
- Wolfram: Fold (reduce)
- Wolfram: Loop