Transpose an array
Array_Type transpose (Array_Type a)
The transpose function returns the transpose of a specified array. By definition, the transpose of an array, say one with elements a[i,j,...k] is an array whose elements are a[k,...,j,i].