Transpose 2D Array
- Updated2023-02-17
- 1 minute(s) read
Transpose 2D Array
Rearranges the elements of a 2D array such that the array [i,j] becomes a transposed array [j,i].

Inputs/Outputs

2D array
A 2D array of any type.

transposed array
The transposed 2D array.