flip¶
- flip(x: array, /, *, axis: int | Tuple[int, ...] | None = None) array ¶
Reverses the order of elements in an array along the given axis. The shape of the array must be preserved.
- Parameters:
x (array) – input array.
axis (Optional[Union[int, Tuple[int, ...]]]) – axis (or axes) along which to flip. If
axis
isNone
, the function must flip all input array axes. Ifaxis
is negative, the function must count from the last dimension. If provided more than one axis, the function must flip only the specified axes. Default:None
.
- Returns:
out (array) – an output array having the same data type and shape as
x
and whose elements, relative tox
, are reordered.