``` In [12]: np.moveaxis(np.empty((10,7,3)), (0, 1), (1, 2)).shape Out[12]: (3, 10, 7) In [13]: dpt.moveaxis(dpt.empty((10, 7,3)), (0, 1), (1, 2)).shape Out[13]: (10, 3, 7) ```