> Reverse the order of elements in an array along the given axis.
>
> The shape of the array is preserved, but the elements are reordered.
>
> **m** : array_like
>
> Input array.
>
> **axis** : None or int or tuple of ints, optional
>
> Axis or axes along which to flip over. The default, axis=None, will flip over all of the axes of the input array. If axis is negative it counts from the last to the first axis.
>
> If axis is a tuple of ints, flipping is performed on all of the axes specified in the tuple.
>
> **out** : array_like
>
> A **view** of m with the entries of axis reversed. Since a view is returned, this operation is done in constant time.
> Rotate an array by 90 degrees in the plane specified by axes.
>
> Rotation direction is from the first towards the second axis. This means for a 2D array with the default k and axes, the rotation will be counterclockwise.