permute_dims¶
- permute_dims(x: array, /, axes: Tuple[int, ...]) array ¶
Permutes the axes (dimensions) of an array
x
.- Parameters:
x (array) – input array.
axes (Tuple[int, ...]) – tuple containing a permutation of
(0, 1, ..., N-1)
whereN
is the number of axes (dimensions) ofx
.
- Returns:
out (array) – an array containing the axes permutation. The returned array must have the same data type as
x
.