array_transp
Calculates the element-wise transposition of an array.
array_transp(A)
A
For an array A with shapes n x m x k, this operations returns an array C, with shapes m x n x k, so that C[,,i] = t(A[,,i]).
Useful links